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? |
|
@rhysd could this be merged, please? |
Contributor
|
I sent a ping on X, and @rhysd said, "I will try to make some time this weekend." So, please wait until the weekend. |
dcalavrezo-qorix
added a commit
to qorix-group/cicd-workflows
that referenced
this pull request
Jul 1, 2026
actionlint v1.7.11 does not yet recognize the queue key in concurrency sections. Add .github/actionlint.yml to ignore this specific error until rhysd/actionlint#654 is merged and released. Signed-off-by: Dan Calavrezo <195309321+dcalavrezo-qorix@users.noreply.github.com>
dcalavrezo-qorix
added a commit
to qorix-group/cicd-workflows
that referenced
this pull request
Jul 1, 2026
actionlint v1.7.11 does not yet recognize the queue key in concurrency sections. Add -ignore flag to the pre-commit hook until rhysd/actionlint#654 is merged and released. Signed-off-by: Dan Calavrezo <195309321+dcalavrezo-qorix@users.noreply.github.com>
AlexanderLanin
pushed a commit
to eclipse-score/cicd-workflows
that referenced
this pull request
Jul 1, 2026
…132) Add queue: max to the docs-deploy concurrency group so that pending runs are queued rather than skipped. actionlint v1.7.11 does not yet recognize the queue key in concurrency sections. Add .github/actionlint.yml to ignore this specific error until rhysd/actionlint#654 is merged and released. Signed-off-by: Dan Calavrezo <195309321+dcalavrezo-qorix@users.noreply.github.com>
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.
queue:key for concurrency #657GitHub 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