ci: use targeted path filters for codeql, miri, and missing-suites checks#4303
Open
andygrove wants to merge 1 commit into
Open
ci: use targeted path filters for codeql, miri, and missing-suites checks#4303andygrove wants to merge 1 commit into
andygrove wants to merge 1 commit into
Conversation
…ecks - codeql.yml: add paths allow-list for .github/** on PRs since CodeQL only scans GitHub Actions files - miri.yml: replace paths-ignore with paths allow-list for native/** since Miri only checks Rust code in the native directory - pr_missing_suites.yml: add paths allow-list for test suite files, PR build workflows, and the check script since it only validates that *Suite.scala files are listed in CI workflows
571dba0 to
65d1943
Compare
2 tasks
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
pathsallow-list for.github/**on PRs. CodeQL is configured to scan GitHub Actions only (languages: actions), so it doesn't need to run when non-workflow files change.paths-ignorewith apathsallow-list of justnative/**. Miri only runscargo miri teston Rust code in the native directory, so it doesn't need to trigger on JVM-only changes (spark/,common/,dev/, etc.)pathsallow-list targeting only the files the check actually inspects — test suite Scala files, the PR build workflows, and the check script itself. Previously ran on every PR regardless of what changed.Test plan
.github/filesnative/Rust code changes*Suite.scalafile🤖 Generated with Claude Code