Skip to content

Commit ee38614

Browse files
authored
Prevent concurrent runs of the update-issues workflow
This is based on these docs: https://docs.github.com/en/actions/how-tos/write-workflows/choose-when-workflows-run/control-workflow-concurrency
1 parent ce5118d commit ee38614

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/update-issues.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ on:
77
branches:
88
- main
99
workflow_dispatch:
10+
concurrency:
11+
group: update-issues
12+
cancel-in-progress: true
1013
jobs:
1114
build:
1215
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)