Skip to content

Commit a2fd65f

Browse files
committed
chore: add concurrency to release workflows
1 parent c06bf1d commit a2fd65f

3 files changed

Lines changed: 12 additions & 0 deletions

File tree

.github/workflows/merge-release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ on:
1111
permissions:
1212
contents: read
1313

14+
concurrency:
15+
group: ${{ github.workflow }}
16+
cancel-in-progress: false
17+
1418
jobs:
1519
merge-release:
1620
runs-on: ubuntu-latest

.github/workflows/prepare-release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ on:
1111
permissions:
1212
contents: read
1313

14+
concurrency:
15+
group: ${{ github.workflow }}
16+
cancel-in-progress: false
17+
1418
jobs:
1519
prepare-release:
1620
runs-on: ubuntu-latest

.github/workflows/publish-release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ on:
1111
permissions:
1212
contents: read
1313

14+
concurrency:
15+
group: ${{ github.workflow }}
16+
cancel-in-progress: false
17+
1418
jobs:
1519
publish-release:
1620
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)