concurrency: Add support for queue key#654
Open
vvoland wants to merge 1 commit into
Open
Conversation
queue keyqueue key
6 tasks
This was referenced May 19, 2026
5 tasks
GitHub Actions shipped a new `queue` key under the `concurrency` section to allow pending workflow runs to queue instead of being cancelled. Allowed values are "max" and "single" (default). The combination of `queue: max` with `cancel-in-progress: true` is not permitted. Reference: https://docs.github.com/en/actions/how-tos/write-workflows/choose-when-workflows-run/control-workflow-concurrency#example-queueing-multiple-pending-runs Signed-off-by: Paweł Gronowski <git@grono.dev>
e7ae0d6 to
644076a
Compare
Author
|
This is now official, updated the commit message |
Author
|
@rhysd PTAL when you have a chance! 🤗 |
bindsi
added a commit
to microsoft/hve-core
that referenced
this pull request
May 28, 2026
gh-aw v0.76.1 emits `concurrency.queue` in compiled `*.lock.yml` workflows, but actionlint v1.7.12 (latest) does not yet recognize the key. Add a scoped ignore pattern under the existing `.github/workflows/*.lock.yml` paths block so YAML lint passes on PRs that include recompiled lock files. Remove the pattern once rhysd/actionlint#654 lands. Refs #1689
Contributor
|
@rhysd is it possible to get this included in a next release? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
GitHub Actions shipped a new
queuekey under theconcurrencysection to allow pending workflow runs to queue instead of being cancelled.Allowed values are "max" and "single" (default).
The combination of
queue: maxwithcancel-in-progress: trueis not permitted.Reference: https://docs.github.com/en/actions/how-tos/write-workflows/choose-when-workflows-run/control-workflow-concurrency#example-queueing-multiple-pending-runs