Align concurrency CI groups names (#7508)

This commit is contained in:
Shahar Naveh
2026-03-26 06:33:14 +01:00
committed by GitHub
parent 6c3dd2885d
commit 7a6dbd6624
3 changed files with 3 additions and 3 deletions

View File

@@ -12,7 +12,7 @@ name: CI
# with the same event (push/pull_request) even they are in progress.
# This setting will help reduce the number of duplicated workflows.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
group: ${{ github.workflow }}-${{ github.ref_name }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
env:

View File

@@ -7,7 +7,7 @@ on:
- "Lib/**"
concurrency:
group: lib-deps-${{ github.event.pull_request.number }}
group: ${{ github.workflow }}-${{ github.ref_name }}-${{ github.event.pull_request.number }}
cancel-in-progress: true
env:

View File

@@ -10,7 +10,7 @@ on:
- release
concurrency:
group: format-check-${{ github.event.pull_request.number }}
group: ${{ github.workflow }}-${{ github.ref_name }}-${{ github.event.pull_request.number }}
cancel-in-progress: true
env: