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
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@ on:
pull_request:
branches: [ main, cc ]

# Cancel superseded runs: when new commits are pushed to the same PR/branch,
# in-progress runs for that ref are cancelled instead of running to completion
# on stale code. Pushes to main are exempt (cancel-in-progress is false there)
# so every commit landed on main keeps full, uninterrupted CI history.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}

permissions:
contents: read

Expand Down
Loading