Skip to content

Commit

Permalink
ci: Make workflow concurrency identifier unique
Browse files Browse the repository at this point in the history
This commit updates the CI workflows such that each workflow has its own
unique concurrency identifier prefix.

Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
  • Loading branch information
stephanosio committed Oct 3, 2024
1 parent 828d146 commit c11cb31
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
workflow_call:

concurrency:
group: ${{ github.ref }}
group: package-${{ github.ref }}
cancel-in-progress: true

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
workflow_call:

concurrency:
group: ${{ github.ref }}
group: test-${{ github.ref }}
cancel-in-progress: true

jobs:
Expand Down

0 comments on commit c11cb31

Please sign in to comment.