Skip to content

Commit c72a65d

Browse files
lucaspimentelclaude
andcommitted
Fix noop pipeline path exclusions for documentation-only PRs
The noop pipeline's path detection uses simple `StartsWith()` matching, not glob patterns. Changed `**/CLAUDE.md` to `.claude/` prefix and added other dev/docs paths that should skip CI. Added exclusions: - `.claude/` (instead of `**/CLAUDE.md` glob) - `.devcontainer/` (dev container config) - `.vscode/` (IDE settings) - `LICENSE`, `NOTICE` (license files) This ensures PRs that only modify documentation or dev settings trigger the noop pipeline instead of the full CI build. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 7b2c575 commit c72a65d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.azure-pipelines/ultimate-pipeline.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,15 @@ pr:
2626
exclude:
2727
- .azure-pipelines/noop-pipeline.yml
2828
- .github/
29+
- .claude/
30+
- .devcontainer/
31+
- .vscode/
2932
- docs/
3033
- tracer/README.MD
3134
- tracer/samples/
3235
- AGENTS.md
33-
- '**/CLAUDE.md'
36+
- LICENSE
37+
- NOTICE
3438

3539
schedules:
3640
- cron: "0 3 * * *"

0 commit comments

Comments
 (0)