-
Notifications
You must be signed in to change notification settings - Fork 8.3k
[release/v7.5] Split TPN manifest and Component Governance manifest #26967
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -34,7 +34,7 @@ pr: | |
| - .vsts-ci/misc-analysis.yml | ||
| - .vsts-ci/windows.yml | ||
| - .vsts-ci/windows/* | ||
| - tools/cgmanifest.json | ||
| - tools/cgmanifest/* | ||
|
||
| - LICENSE.txt | ||
| - test/common/markdown/* | ||
| - test/perf/* | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -34,7 +34,7 @@ pr: | |
| - .github/ISSUE_TEMPLATE/* | ||
| - .github/workflows/* | ||
| - .vsts-ci/misc-analysis.yml | ||
| - tools/cgmanifest.json | ||
| - tools/cgmanifest/* | ||
|
||
| - LICENSE.txt | ||
| - test/common/markdown/* | ||
| - test/perf/* | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -28,7 +28,7 @@ pr: | |
| - .dependabot/config.yml | ||
| - .github/ISSUE_TEMPLATE/* | ||
| - .vsts-ci/misc-analysis.yml | ||
| - tools/cgmanifest.json | ||
| - tools/cgmanifest/* | ||
|
||
| - LICENSE.txt | ||
| - test/common/markdown/* | ||
| - test/perf/* | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Azure Pipelines path filters treat
*as a single path segment;tools/cgmanifest/*likely won’t match nested paths liketools/cgmanifest/main/cgmanifest.json. If the intent is to exclude all cgmanifest changes, this should betools/cgmanifest/**so changes undermain/andtpn/are covered.