mirror of
https://github.com/awesome-selfhosted/awesome-selfhosted-data.git
synced 2026-03-11 08:55:24 +00:00
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:
parent
4387d6e79b
commit
423b418371
3 changed files with 3 additions and 3 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
|
@ -6,7 +6,7 @@ on:
|
|||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.ref }}
|
||||
group: build-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
|
|
|
|||
2
.github/workflows/daily-update-metadata.yml
vendored
2
.github/workflows/daily-update-metadata.yml
vendored
|
|
@ -9,7 +9,7 @@ env:
|
|||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.ref }}
|
||||
group: update-metadata-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
|
|
|
|||
2
.github/workflows/pull-request.yml
vendored
2
.github/workflows/pull-request.yml
vendored
|
|
@ -5,7 +5,7 @@ on:
|
|||
branches: [ master ]
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.ref }}
|
||||
group: pull-request-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
|
|
|
|||
Loading…
Reference in a new issue