Skip to content

Commit

Permalink
HCPCP-1928 Vault & Platform: Add concurreny group to github action fo…
Browse files Browse the repository at this point in the history
…r TestAcc
  • Loading branch information
jasonpilz committed Dec 11, 2024
1 parent 7c0cbe8 commit 3aaf4b3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/_testacc_platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ on:
- 'internal/providersdkv2/resource_aws_transit_gateway_attachment*'
- 'internal/providersdkv2/resource_hvn*'

# 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-platform
cancel-in-progress: false

jobs:
acceptance_tests:
name: Acceptance Tests
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/_testacc_vault.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ on:
- 'internal/clients/vault_cluster.go'
- 'internal/providersdkv2/resource_vault_*'

# 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-vault
cancel-in-progress: false

jobs:
acceptance_tests:
name: Acceptance Tests
Expand Down

0 comments on commit 3aaf4b3

Please sign in to comment.