fix: update workflow concurrency settings to prevent cancellation between push and PR events

This commit is contained in:
GitHub Actions
2026-02-06 06:54:36 +00:00
parent e6e957d0ed
commit 7a48bccfaf
18 changed files with 116 additions and 17 deletions

View File

@@ -22,7 +22,7 @@ on:
# Prevent race conditions when PR is updated mid-test
# Cancels old test runs when new build completes with different SHA
concurrency:
group: ${{ github.workflow }}-${{ github.event.workflow_run.head_branch || github.ref }}
group: ${{ github.workflow }}-${{ github.event.workflow_run.event || github.event_name }}-${{ github.event.workflow_run.head_branch || github.ref }}
cancel-in-progress: true
jobs: