Skip to content

Commit

Permalink
Merge pull request #397 from fingolfin/mh/CI-limit-concurrency
Browse files Browse the repository at this point in the history
CI: limit concurrency for update-contrib workflow
  • Loading branch information
aaruni96 authored Dec 5, 2024
2 parents 2810dd6 + d6be038 commit 466ec26
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/update-contrib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ on:
schedule:
- cron: '0 0 1 * *' # At 00:00 UTC on the 1st of every month

# only run at most one instances of this workflow at a time for each branch
# resp. tag. Starting a new one cancels previously running ones.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
update-contributors:
runs-on: ubuntu-22.04
Expand Down

0 comments on commit 466ec26

Please sign in to comment.