Skip to content

Commit c11cb31

Browse files
committed
ci: Make workflow concurrency identifier unique
This commit updates the CI workflows such that each workflow has its own unique concurrency identifier prefix. Signed-off-by: Stephanos Ioannidis <[email protected]>
1 parent 828d146 commit c11cb31

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
workflow_call:
1313

1414
concurrency:
15-
group: ${{ github.ref }}
15+
group: package-${{ github.ref }}
1616
cancel-in-progress: true
1717

1818
jobs:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
workflow_call:
1313

1414
concurrency:
15-
group: ${{ github.ref }}
15+
group: test-${{ github.ref }}
1616
cancel-in-progress: true
1717

1818
jobs:

0 commit comments

Comments
 (0)