Skip to content

Commit e928ca9

Browse files
committed
Enable parallel execution for rapid PR merges by including commit SHA in concurrency groups
This allows multiple commits to run simultaneously without canceling each other, improving throughput when PRs are merged in quick succession.
1 parent 0b8293e commit e928ca9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/main-push-fast.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
permissions:
2525
contents: read
2626
concurrency:
27-
group: ${{ github.workflow }}-${{ github.ref }}
27+
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.sha }}
2828
cancel-in-progress: true
2929
steps:
3030
- uses: actions/checkout@v4

.github/workflows/maintenance-fast.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
permissions:
1313
contents: read
1414
concurrency:
15-
group: ${{ github.workflow }}-${{ github.ref }}
15+
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.sha }}
1616
cancel-in-progress: true
1717
steps:
1818
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)