ci(host-tests): run on every PR so the required check is safe#11
Merged
Conversation
The 'Portable logic (no hardware)' job is a required status check in the repo ruleset. With a pull_request paths filter it doesn't run on PRs that don't touch firmware/host code (e.g. docs-only PRs), leaving them blocked on a forever-pending 'Expected' status. Drop the pull_request filter so it always reports. Stays on the GitHub-hosted runner (free + unlimited for public repos); push remains path-filtered. Signed-off-by: Pratheek Balakrishna <pratheekb96@gmail.com>
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.
Makes the
Portable logic (no hardware)required status check (added to the ruleset) safe: drops thepull_requestpaths filter so the job reports on every PR, not just ones touching firmware/host code. A path-filtered required check leaves docs-only PRs blocked on a forever-pending "Expected" status.pushstays path-filtered to avoid wasted branch runs.host-tests.yml, so the check runs here and self-validates.