ci: skip advisory jobs in merge queue#13404
Merged
Merged
Conversation
merge_group CI is primarily a final sanity check that queued changes still compose cleanly, not a place to rerun every expensive advisory suite. Skip Windows integration, Vagrant integration, and Kubernetes node e2e for merge_group because those jobs are costly and have recurring flakes, which wastes merge-queue capacity and delays unrelated merges. They still run on pull_request events for advisory coverage, and the existing aggregate required status check name is unchanged. Signed-off-by: Brian Goff <cpuguy83@gmail.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Skips three expensive/flaky advisory CI suites (Windows integration, Vagrant integration, Kubernetes node E2E) when the workflow runs on merge_group events, while leaving them enabled for pull_request events. The aggregate results job uses if: always() and treats only failure/cancelled as blocking, so skipped jobs will not break the required status check.
Changes:
- Add
if: github.event_name != 'merge_group'guard tointegration-windows,integration-vagrant, andnode-e2ejobs. - No change to the aggregate
resultsrequired-check job or itsneedslist.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
AkihiroSuda
approved these changes
May 14, 2026
samuelkarp
approved these changes
May 15, 2026
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.
Summary
merge_groupevents.pull_requestevents for advisory coverage.Rationale
merge_groupCI is primarily a final sanity check that queued changes still compose cleanly. These suites are expensive and have recurring flakes, so rerunning them in the merge queue wastes capacity and can delay unrelated merges.