Skip to content

Commit b3d6dfb

Browse files
Copilotmathbunnyru
andcommitted
Address feedback: update comment and fix concurrency to allow parallel develop runs
Co-authored-by: mathbunnyru <12270691+mathbunnyru@users.noreply.github.com>
1 parent 6fd5eb5 commit b3d6dfb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ on:
2828
workflow_dispatch:
2929

3030
concurrency:
31-
# Only cancel in-progress jobs or runs for the current workflow - matches against branch & tags
32-
group: ${{ github.workflow }}-${{ github.ref }}
31+
# Use separate concurrency groups for develop vs other branches to prevent cross-cancellation
32+
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.ref == 'refs/heads/develop' && github.run_number || 'branch' }}
3333
cancel-in-progress: ${{ github.ref != 'refs/heads/develop' }}
3434

3535
jobs:

0 commit comments

Comments
 (0)