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
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ name: CI
# - Concurrency cancels superseded PR/branch tip runs

on:
merge_group:
workflow_dispatch:
push:
branches: [main]
Expand All @@ -16,7 +17,7 @@ permissions:
contents: read
concurrency:
# Fast Trunk: supersede obsolete runs for the same PR or branch tip.
group: ci-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
group: ci-${{ github.workflow }}-${{ github.event.pull_request.number || github.event.merge_group.head_sha || github.ref }}
cancel-in-progress: true

jobs:
Expand Down
Loading