Remove paths filter from spellcheck PR trigger#96
Merged
Conversation
Agent-Logs-Url: https://github.com/radius-project/blog/sessions/0e87d70a-b6ef-4444-abe2-c5d446a5ad82 Co-authored-by: brooke-hamilton <45323234+brooke-hamilton@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
brooke-hamilton
May 12, 2026 15:42
View session
There was a problem hiding this comment.
Pull request overview
Updates the Spellcheck GitHub Actions workflow to ensure it always runs (and reports a status) on pull requests targeting main, preventing branch protection from blocking PRs when the workflow is skipped due to paths filters.
Changes:
- Removed the
pathsfilter from thepull_requesttrigger in.github/workflows/spellcheck.yaml. - Left the
pushtrigger’spathsfilter intact so push-based runs remain scoped to relevant files.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Static Web App Preview
Deployed from commit |
DariuszPorowski
approved these changes
May 14, 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.
Some Dependabot PRs are blocked because the Spellcheck workflow is a required check via branch protection, but it has a
pathsfilter on thepull_requesttrigger. When a PR doesn't touch any of the filtered paths, the workflow doesn't run and the required check never reports a status, leaving the PR stuck (e.g. #95).This removes the
pathsfilter from thepull_requesttrigger in.github/workflows/spellcheck.yamlso the workflow runs on every PR targetingmainand the required check always reports a status. Thepushtrigger'spathsfilter is left intact.