Conversation
GitHub's merge queue builds a temporary gh-readonly-queue/* branch and fires the merge_group event; workflows that only trigger on pull_request/push never run there, so required status checks report nothing and every queue entry times out. Add merge_group as a trigger to both workflows so their jobs run when a PR enters the queue.
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.
Pull Request
Summary
mainis getting a merge queue. A queue builds a temporarygh-readonly-queue/*branch and fires themerge_groupevent, and a workflow that triggers only onpull_requestandpushnever runs there, so its checks never report and every queue entry times out.ci.ymlandquality.ymlnow also run onmerge_group.Nothing else changes. The jobs gated on
github.event_name == 'push'(coverage, notify-demos) stay skipped on the queue branch as they are on pull requests, and the clang-tidy job falls back to its full-tree scan there because there is no pull request diff to narrow it to.Issue
No issue. Two
on:blocks, needed before the queue can be enabled.Type
Testing
on:block in each and nothing else.merge_group: types: [checks_requested]).merge_grouprun.Checklist