fix(ci): stop dropping pending main workflow runs

This commit is contained in:
Tak Hoffman
2026-03-24 12:34:46 -05:00
parent d58d90074f
commit 240479abef
3 changed files with 3 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ on:
types: [opened, reopened, synchronize, ready_for_review, converted_to_draft]
concurrency:
group: ${{ github.event_name == 'pull_request' && format('ci-pr-{0}', github.event.pull_request.number) || format('ci-push-{0}', github.ref_name) }}
group: ${{ github.event_name == 'pull_request' && format('ci-pr-{0}', github.event.pull_request.number) || format('ci-push-{0}', github.run_id) }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
env: