Skip to content

Commit 281e79d

Browse files
committed
Fix workflow concurrency deadlock
1 parent 750dd3a commit 281e79d

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/release-versioned.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
push: ${{ github.event_name != 'pull_request' }}
6767

6868
generate-readme:
69-
needs:
69+
needs:
7070
- generate
7171
- build
7272
uses: ./.github/workflows/use-readme.yml

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
- 'nginx-modules.json'
1717

1818
concurrency:
19-
group: ${{ github.workflow }}-${{ github.ref }}
19+
group: release-${{ github.workflow }}-${{ github.ref }}
2020
cancel-in-progress: true
2121

2222
env:

.github/workflows/use-readme.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ on:
2424
default: ""
2525

2626
concurrency:
27-
group: ${{ github.workflow }}-${{ github.ref }}
27+
group: use-readme-${{ github.workflow }}-${{ github.ref }}
2828
cancel-in-progress: true
2929

3030
permissions:

0 commit comments

Comments
 (0)