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
No known key found for this signature in database
3 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ on:
branches: [main]
concurrency:
group: ci-bun-push-${{ github.ref_name }}
group: ci-bun-push-${{ github.run_id }}
cancel-in-progress: false
env:

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:

View File

@ -20,7 +20,7 @@ on:
type: string
concurrency:
group: docker-release-${{ github.workflow }}-${{ github.event_name == 'workflow_dispatch' && inputs.tag || github.ref }}
group: ${{ github.event_name == 'workflow_dispatch' && format('docker-release-manual-{0}', inputs.tag) || format('docker-release-push-{0}', github.run_id) }}
cancel-in-progress: false
env: