Fix docs path exclusion to use recursive wildcard in azure-pipelines-PR.yml#19848
Open
Copilot wants to merge 3 commits into
Open
Fix docs path exclusion to use recursive wildcard in azure-pipelines-PR.yml#19848Copilot wants to merge 3 commits into
Copilot wants to merge 3 commits into
Conversation
Co-authored-by: T-Gro <46543583+T-Gro@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Update path filters in azure-pipelines-PR.yml to exclude nested docs paths
Fix docs path exclusion to use recursive wildcard in azure-pipelines-PR.yml
May 28, 2026
T-Gro
approved these changes
May 28, 2026
Member
T-Gro
left a comment
There was a problem hiding this comment.
LGTM — the change is correct and well-scoped.
One optional follow-up: the same single-star limitation applies to .github/, .vscode/, .devcontainer/, and ests/scripts/ in both sections. If any of those directories have nested content (e.g. .github/workflows/*.yml), they'd also benefit from **. Feel free to address in a separate PR or ignore if those dirs are flat today.
Contributor
✅ No release notes required |
T-Gro
approved these changes
May 28, 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.
docs/*only excludes direct children ofdocs/, so changes to nested paths likedocs/release-notes/foo.mdwere still triggering CI builds.Change
Replace
docs/*withdocs/**in bothtrigger.paths.excludeandpr.paths.exclude:**matches at any nesting depth, so all changes underdocs/are now correctly excluded from both push and PR triggers.Original prompt
This pull request was created from Copilot chat.