ci: report the required fuzz check on every PR#23
Merged
Conversation
Signed-off-by: kriptoburak <kriptoburak@users.noreply.github.com>
furkanerday
approved these changes
Jul 24, 2026
furkanerday
left a comment
Collaborator
There was a problem hiding this comment.
Reviewed the complete diff, PR description, all conversation and review history, unresolved threads, repository policies, relevant contracts and tests, required checks, and commit sign-offs at ee88637. All required checks pass, no actionable thread remains, and I found no blocking issue.
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
Fuzz Query Stringsworkflow for every pull requestmainRoot Cause
Branch protection requires
Fuzz Query Strings. The workflow also used pull-request path filters. A test-only contribution therefore skipped the workflow and remained permanently blocked, even after every applicable test passed.GitHub documents that path-filtered required workflows remain pending and block merging. Required workflows must report a result for every protected pull request.
Impact
Every pull request now receives the required fuzz result. Runtime code, package metadata, public APIs, permissions, and fuzz behavior do not change.
Validation
actionlint .github/workflows/fuzz.ymlgit diff --checkReference: https://docs.github.com/en/pull-requests/how-tos/merge-and-close-pull-requests/troubleshooting-required-status-checks
Signed-off-by: kriptoburak kriptoburak@users.noreply.github.com
Note
Run fuzz CI check on all pull requests targeting main
Removes the
pull_request.pathsfilter from fuzz.yml so the fuzz workflow triggers on every PR, not just those touching previously listed paths. This ensures the fuzz check is always reported as a required status check regardless of which files are changed.Macroscope summarized ee88637.