ci: Enable workflow queue for publish-release workflow#8640
Merged
Conversation
This was referenced Apr 29, 2026
pull Bot
pushed a commit
to Reality2byte/core
that referenced
this pull request
Apr 29, 2026
…Mask#8641) Reverts MetaMask#8640. Temporarily reverting to see if this causes an issue with a workflow run. <!-- CURSOR_SUMMARY --> --- > [!NOTE] > **Medium Risk** > Touches CI/release GitHub Actions configuration; mistakes could block releases or reduce workflow protection, though the changes are small and a direct revert. > > **Overview** > Reverts the `publish-release` workflow `concurrency` configuration that enabled queued runs (removes `queue: max` and its group). > > Deletes `.github/actionlint.yml` and downgrades the actionlint download in `main.yml` (script ref + version) to match the workflows’ supported syntax, avoiding the previous lint exception for the unsupported `queue` key. > > <sup>Reviewed by [Cursor Bugbot](https://cursor.com/bugbot) for commit 04f0165. Bugbot is set up for automated code reviews on this repo. Configure [here](https://www.cursor.com/dashboard/bugbot).</sup> <!-- /CURSOR_SUMMARY -->
pull Bot
pushed a commit
to Reality2byte/core
that referenced
this pull request
Apr 29, 2026
This restores MetaMask#8640, which was reverted to test if it was related to a workflow issue, but does not appear to be the case. <!-- CURSOR_SUMMARY --> --- > [!NOTE] > **Low Risk** > CI/workflow-only changes; the main risk is altered release-job scheduling/serialization and relying on an actionlint ignore for the new key. > > **Overview** > Enables queued concurrency for the `publish-release` GitHub Actions workflow by adding `concurrency.group` and `concurrency.queue: max`, preventing overlapping release publishes. > > Updates the workflow CI to download a newer `actionlint` version, and adds an `actionlint.yml` ignore rule to suppress the current false-positive error for the unsupported `concurrency.queue` key in `publish-release.yml`. > > <sup>Reviewed by [Cursor Bugbot](https://cursor.com/bugbot) for commit ff30429. Bugbot is set up for automated code reviews on this repo. Configure [here](https://www.cursor.com/dashboard/bugbot).</sup> <!-- /CURSOR_SUMMARY -->
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.
Explanation
This adds a concurrency config with
queue: maxto the publish release workflow, which should theoretically queue releases if multiple are created at the same time.References
Checklist
Note
Low Risk
Changes are limited to GitHub Actions workflow configuration and linting; main risk is unintended release job serialization/queuing behavior if the concurrency semantics differ from expectations.
Overview
Adds
concurrencyto.github/workflows/publish-release.ymlwithgroup: publish-releaseandqueue: maxso multiple release publishes serialize instead of overlapping.Updates CI workflow linting by bumping
actionlintinmain.ymland adding.github/actionlint.ymlto ignore the newqueuekey warning (not yet supported byactionlint).Reviewed by Cursor Bugbot for commit 919594b. Bugbot is set up for automated code reviews on this repo. Configure here.