Skip to content

Commit f6032f5

Browse files
chore(GHA): limit workflow concurrency
1 parent 4ae1740 commit f6032f5

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

.github/workflows/build-native-only.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ on:
1010
release:
1111
types: [created]
1212

13+
concurrency:
14+
group: ${{ github.workflow }}-${{ github.ref_name }}-${{ github.event.pull_request.number || github.sha }}
15+
cancel-in-progress: true
16+
1317
jobs:
1418
get-commit-message:
1519
runs-on: ubuntu-latest

.github/workflows/claude-code-automation-operational-excellence-weekly.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ on:
1515
- staging
1616
- production
1717

18+
concurrency:
19+
group: ${{ github.workflow }}
20+
cancel-in-progress: true
21+
1822
jobs:
1923
operational-excellence:
2024
uses: ./.github/workflows/_claude-code.yml

.github/workflows/claude-code-automation-pr-review.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ on:
1414
- staging
1515
- production
1616

17+
concurrency:
18+
group: ${{ github.workflow }}-${{ github.ref_name }}-${{ github.event.pull_request.number || github.sha }}
19+
cancel-in-progress: true
20+
1721
jobs:
1822
claude-review:
1923
uses: ./.github/workflows/_claude-code.yml

0 commit comments

Comments
 (0)