Skip to content

Commit dcbdd34

Browse files
CopilotNoopDog
andauthored
fix: add concurrency controls to prevent concurrent S3 deployments (957) (#1014)
Add concurrency configuration to dev-deploy and publish workflows Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: NoopDog <[email protected]>
1 parent e84d776 commit dcbdd34

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

.github/workflows/dev-deploy.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ on:
66
permissions:
77
id-token: write
88
contents: read
9+
10+
concurrency:
11+
group: dev-deploy
12+
cancel-in-progress: false
13+
914
jobs:
1015
build-and-deploy:
1116
if: github.repository == 'galaxyproject/brc-analytics'

.github/workflows/publish.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ on:
99
branches:
1010
- production
1111

12+
concurrency:
13+
group: prod-deploy
14+
cancel-in-progress: false
15+
1216
jobs:
1317
build-and-deploy:
1418
if: github.repository == 'galaxyproject/brc-analytics'

0 commit comments

Comments
 (0)