We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fd5eb5 commit b3d6dfbCopy full SHA for b3d6dfb
.github/workflows/build.yml
@@ -28,8 +28,8 @@ on:
28
workflow_dispatch:
29
30
concurrency:
31
- # Only cancel in-progress jobs or runs for the current workflow - matches against branch & tags
32
- group: ${{ github.workflow }}-${{ github.ref }}
+ # Use separate concurrency groups for develop vs other branches to prevent cross-cancellation
+ group: ${{ github.workflow }}-${{ github.ref }}-${{ github.ref == 'refs/heads/develop' && github.run_number || 'branch' }}
33
cancel-in-progress: ${{ github.ref != 'refs/heads/develop' }}
34
35
jobs:
0 commit comments