Skip to content

Commit 9babd59

Browse files
committed
fix: 워크플로끼리 락 경합이 발생하지 않도록 그룹처리
1 parent 55c7ace commit 9babd59

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

.github/workflows/deploy-dev.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ permissions:
1515
pull-requests: write
1616
issues: write
1717

18+
concurrency:
19+
group: terraform
20+
cancel-in-progress: false
21+
1822
env:
1923
AWS_REGION: ap-northeast-2
2024

.github/workflows/deploy-prod.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ permissions:
2020
pull-requests: write
2121
issues: write
2222

23+
concurrency:
24+
group: terraform
25+
cancel-in-progress: false
26+
2327
env:
2428
AWS_REGION: ap-northeast-2
2529

.github/workflows/terraform-plan.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ permissions:
1111
pull-requests: write
1212
issues: write
1313

14+
concurrency:
15+
group: terraform
16+
cancel-in-progress: false
17+
1418
jobs:
1519
plan-common:
1620
name: "Terraform Plan (common)"

0 commit comments

Comments
 (0)