Skip to content

Commit c546689

Browse files
committed
chore: add concurrency settings to Terraform workflows
1 parent fb5ae2c commit c546689

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/tf-build.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ on:
3030
env:
3131
TERRAFORM_VERSION: 1.12.2
3232

33+
concurrency:
34+
group: terraform-${{ inputs.ENVIRONMENT }}
35+
cancel-in-progress: false
36+
3337
jobs:
3438
terraform-build:
3539
defaults:

.github/workflows/tf-release.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ on:
2727
env:
2828
TERRAFORM_VERSION: 1.12.2
2929

30+
concurrency:
31+
group: terraform-${{ inputs.ENVIRONMENT }}
32+
cancel-in-progress: false
33+
3034
jobs:
3135
terraform-release:
3236
defaults:

0 commit comments

Comments
 (0)