tools/github actions: fix concurrency between workflows

- only jobs that are part of the same workflow should not run concurrently
This commit is contained in:
nodiscc
2023-07-22 19:13:03 +02:00
parent 4387d6e79b
commit 423b418371
3 changed files with 3 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ on:
workflow_dispatch:
concurrency:
group: ${{ github.ref }}
group: build-${{ github.ref }}
cancel-in-progress: true
jobs:

View File

@@ -9,7 +9,7 @@ env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
concurrency:
group: ${{ github.ref }}
group: update-metadata-${{ github.ref }}
cancel-in-progress: true
jobs:

View File

@@ -5,7 +5,7 @@ on:
branches: [ master ]
concurrency:
group: ${{ github.ref }}
group: pull-request-${{ github.ref }}
cancel-in-progress: true
jobs: