summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephanos Ioannidis <root@stephanos.io>2024-10-04 01:44:19 +0900
committerStephanos Ioannidis <root@stephanos.io>2024-10-04 01:44:19 +0900
commitc11cb31363a5ad1c3ad2ea2561c713dba8247c8b (patch)
tree4501cadd804d1de4d727f085333405bedc952fcd
parent828d146c69d78d416b685f4e4c3556ce563af428 (diff)
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 <root@stephanos.io>
-rw-r--r--.github/workflows/package.yml2
-rw-r--r--.github/workflows/test.yml2
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml
index 0014d93..c88a996 100644
--- a/.github/workflows/package.yml
+++ b/.github/workflows/package.yml
@@ -12,7 +12,7 @@ on:
workflow_call:
concurrency:
- group: ${{ github.ref }}
+ group: package-${{ github.ref }}
cancel-in-progress: true
jobs:
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 87b27bf..02ae811 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -12,7 +12,7 @@ on:
workflow_call:
concurrency:
- group: ${{ github.ref }}
+ group: test-${{ github.ref }}
cancel-in-progress: true
jobs: