Merge pull request #41 from jaydee029/main #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
name: Trigger Helm workflow in automation repository | |
on: | |
push: | |
branches: [main] | |
env: | |
NAMESPACE: galasa-dev | |
jobs: | |
trigger-workflow: | |
name: trigger helm workflow | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- name: Triggering workflow using Github API call | |
run: | | |
gh workflow run build-helm.yaml --repo https://github.com/${{env.NAMESPACE}}/automation | |
env: | |
GH_TOKEN: ${{ secrets.GALASA_TEAM_GITHUB_TOKEN }} | |