Skip to content

Commit

Permalink
ci: Add concurrency group to HEAD of dependencies workflow (#1836)
Browse files Browse the repository at this point in the history
* Use a concurrency group to limit the HEAD of dependencies workflow
to only one run at a time.
   - c.f. https://docs.github.com/en/actions/using-jobs/using-concurrency
  • Loading branch information
matthewfeickert committed Apr 1, 2022
1 parent d41688e commit 0693b9f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/dependencies-head.yml
Expand Up @@ -6,6 +6,10 @@ on:
- cron: '1 0 * * *'
workflow_dispatch:

concurrency:
group: dependencies-head-${{ github.ref }}
cancel-in-progress: true

jobs:
release-candidates:

Expand Down

0 comments on commit 0693b9f

Please sign in to comment.