Skip to content

Commit 7a6dbd6

Browse files
authored
Align concurrency CI groups names (RustPython#7508)
1 parent 6c3dd28 commit 7a6dbd6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ name: CI
1212
# with the same event (push/pull_request) even they are in progress.
1313
# This setting will help reduce the number of duplicated workflows.
1414
concurrency:
15-
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
15+
group: ${{ github.workflow }}-${{ github.ref_name }}-${{ github.event.pull_request.number || github.sha }}
1616
cancel-in-progress: true
1717

1818
env:

.github/workflows/lib-deps-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- "Lib/**"
88

99
concurrency:
10-
group: lib-deps-${{ github.event.pull_request.number }}
10+
group: ${{ github.workflow }}-${{ github.ref_name }}-${{ github.event.pull_request.number }}
1111
cancel-in-progress: true
1212

1313
env:

.github/workflows/pr-format.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
- release
1111

1212
concurrency:
13-
group: format-check-${{ github.event.pull_request.number }}
13+
group: ${{ github.workflow }}-${{ github.ref_name }}-${{ github.event.pull_request.number }}
1414
cancel-in-progress: true
1515

1616
env:

0 commit comments

Comments
 (0)