ci: run python matrix on every PR for required-check safety#507
Merged
Conversation
The test (3.10) / test (3.12) contexts are being added to required status checks; a path-filtered workflow never produces them on PRs that skip python surfaces, which blocks those PRs forever. The push trigger keeps its path filter; PR runs are cheap (the suite is under a minute).
creatornader
enabled auto-merge (squash)
July 14, 2026 08:35
creatornader
added a commit
that referenced
this pull request
Jul 14, 2026
Merge queues run required checks on the merge_group event; a workflow without that trigger never reports, so the queue would stall exactly the way path-filtered required checks stalled PRs (#507's lesson). CodeQL runs default setup, which handles merge groups natively.
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.
Enables the operator-approved required-checks addition of
test (3.10)/test (3.12): a path-filtered workflow never produces those contexts on PRs that skip python surfaces, so making them required deadlocks such PRs (discovered live on #506, temporarily unblocked by dropping the contexts). This removes thepull_requestpaths filter (push keeps its filter); the contexts get re-added to protection after this merges.