Skip to content

Commit 39fe441

Browse files
authored
Prevent conflicts in wiki action
This uses the concurrency constraint to ensure that two or more runs don't occur at the same time, potentially causing a conflict as each tries to push to the remote.
1 parent 73c596f commit 39fe441

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/wiki.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ jobs:
1111
update-wiki:
1212
runs-on: ubuntu-latest
1313
name: Sync Wiki
14+
concurrency:
15+
group: wiki
16+
cancel-in-progress: true
1417

1518
steps:
1619
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)