fix: update workflow concurrency groups to enable run cancellation

- Refactor concurrency settings in `e2e-tests-split.yml` and `codecov-upload.yml` to remove SHA and run_id from group strings, allowing for proper cancellation of in-progress runs.
- Ensure that new pushes to the same branch cancel any ongoing workflow runs, improving CI efficiency and reducing queue times.
This commit is contained in:
GitHub Actions
2026-02-26 04:53:21 +00:00
parent 759cff5e7f
commit 940c42f341
4 changed files with 836 additions and 544 deletions

View File

@@ -19,7 +19,7 @@ on:
type: boolean
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}-${{ github.run_id }}
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env: