HCPCP-1928 Add event trigger for push on testacc for feature branch #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: TestAcc | |
on: | |
workflow_call: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- 'jasonpilz/testacc' | |
push: | |
branches: | |
- 'jasonpilz/testacc' | |
# This prevents more than one run of this workflow from executing at a time. | |
# Up to 1 additional run will be queued, with anything futher being cancelled from the queue. | |
concurrency: | |
group: testacc | |
cancel-in-progress: false | |
jobs: | |
testacc_platform: | |
name: TestAcc Platform | |
uses: ./.github/workflows/_testacc_platform.yml | |
testacc_vault: | |
name: TestAcc Vault | |
uses: ./.github/workflows/_testacc_vault.yml |