Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ on:
# distinct PRs/branches never cancel each other.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# Only cancel superseded PR runs; NEVER cancel a push (master/release/tag)
# run - back-to-back merges to master share this ref-group, so cancel-on-push
# would kill a merged SHA in-flight rollup before it verifies green (#626
# bit the #617 web-static lane exactly this way). PR churn still de-dupes.
cancel-in-progress: ${{ github.event_name != 'push' }}


jobs:
Expand Down
Loading