Created a new PR build workflow #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Copyright contributors to the Galasa project | |
# | |
# SPDX-License-Identifier: EPL-2.0 | |
# | |
name: PR Build | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
build-helm: | |
name: Galasa Helm Repo | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Turn script into an executable | |
run: chmod +x detect-secrets.sh | |
- name: Run the detect secrets script | |
run: ./detect-secrets.sh |