[ci]: fix merge-gate Buildkite state filters - #1760
Closed
SolitaryThinker wants to merge 1 commit into
Closed
Conversation
Contributor
Merge Protections🔴 1 of 1 protections blocking · waiting on 👀 reviews and 🤖 CI
🔴 PR merge requirementsWaiting for
This rule is failing.
|
Collaborator
Author
|
/test full |
Collaborator
Author
|
/merge |
This was referenced Aug 26, 2026
Collaborator
Author
|
Superseded by #1762 at reviewed head |
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.
Problem
The merge-gate launcher fails before it can schedule Buildkite. Recent runs such as
32933734982and32934071377stop in Cancel previous Buildkite builds with:The list-builds request sends
state=running,scheduled. Buildkite's REST API requires repeated Rails-array parameters for multiple states:state[]=running&state[]=scheduled. The rejected response is an error object, but the currentcurl -sSstill pipes it into ajqfilter that assumes an array of builds.Official contract: https://buildkite.com/docs/apis/rest-api/builds
Solution
state[]query parameter per requested state.If the corrected request reports an authorization error, the repository's Buildkite token must be updated to include
read_builds; cancellation and build creation requirewrite_builds.Validation