diff options
| author | Stephanos Ioannidis <root@stephanos.io> | 2024-10-04 01:44:19 +0900 |
|---|---|---|
| committer | Stephanos Ioannidis <root@stephanos.io> | 2024-10-04 01:44:19 +0900 |
| commit | c11cb31363a5ad1c3ad2ea2561c713dba8247c8b (patch) | |
| tree | 4501cadd804d1de4d727f085333405bedc952fcd /.github/workflows | |
| parent | 828d146c69d78d416b685f4e4c3556ce563af428 (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>
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/package.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/test.yml | 2 |
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: |
