Skip to content

Commit 41342cf

Browse files
committed
feat: add concurrency control to CI workflow
Only one workflow runs at a time per branch. New runs queue instead of running in parallel, ensuring deployments happen in order.
1 parent 72e4374 commit 41342cf

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/landcare-ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ on:
1313
push:
1414
branches: [metaspace]
1515

16+
concurrency:
17+
group: ${{ github.workflow }}-${{ github.ref }}
18+
cancel-in-progress: false
19+
1620
jobs:
1721
build:
1822
uses: manaakiwhenua/github-workflows/.github/workflows/docker-build.yml@main

0 commit comments

Comments
 (0)