Skip to content

Commit f6703bc

Browse files
committed
implement @DilumAluthge's suggestion
1 parent 64c9a7e commit f6703bc

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
concurrency:
1111
# Skip intermediate builds: always.
1212
# Cancel intermediate builds: only if it is a pull request build.
13-
group: CI-${{ github.ref }}
13+
group: ${{ github.workflow }}-${{ github.ref }}
1414
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
1515
jobs:
1616
test:

.github/workflows/IntegrationTest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
concurrency:
99
# Skip intermediate builds: always.
1010
# Cancel intermediate builds: only if it is a pull request build.
11-
group: IntegrationTest-${{ github.ref }}
11+
group: ${{ github.workflow }}-${{ github.ref }}
1212
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
1313

1414
jobs:

.github/workflows/JuliaNightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
concurrency:
1111
# Skip intermediate builds: always.
1212
# Cancel intermediate builds: only if it is a pull request build.
13-
group: JuliaNightly-${{ github.ref }}
13+
group: ${{ github.workflow }}-${{ github.ref }}
1414
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
1515
jobs:
1616
test:

0 commit comments

Comments
 (0)