Skip to content

Commit

Permalink
build: prevent concurrent CI and CQ workflow runs
Browse files Browse the repository at this point in the history
Use concurrency groups to prevent new runs from being started while a
previous job is already running. This can happen when a lot of unrelated
jobs are pending because of runner exhaustion.

PR-URL: #42016
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Mestery <mestery@protonmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
  • Loading branch information
targos authored and danielleadams committed Apr 24, 2022
1 parent f4e3917 commit 290a2bf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/auto-start-ci.yml
Expand Up @@ -8,6 +8,8 @@ on:
# ./doc/contributing/commit-queue.md
- cron: '*/5 * * * *'

concurrency: ${{ github.workflow }}

env:
NODE_VERSION: lts/*

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/commit-queue.yml
Expand Up @@ -13,6 +13,8 @@ on:
schedule:
- cron: '*/5 * * * *'

concurrency: ${{ github.workflow }}

env:
NODE_VERSION: lts/*

Expand Down

0 comments on commit 290a2bf

Please sign in to comment.