Browse Source

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.
pull/989/head
Spenser Black 3 years ago committed by GitHub
parent
commit
39fe44153b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      .github/workflows/wiki.yml

3
.github/workflows/wiki.yml

@ -11,6 +11,9 @@ jobs: @@ -11,6 +11,9 @@ jobs:
update-wiki:
runs-on: ubuntu-latest
name: Sync Wiki
concurrency:
group: wiki
cancel-in-progress: true
steps:
- uses: actions/checkout@v3

Loading…
Cancel
Save