Skip to content

Commit 7b94c55

Browse files
blagininclaude
andcommitted
Fix glob pattern for markdown files in paths-filter
The pattern `!**.md` doesn't correctly match markdown files in subdirectories. Changed to `!**/*.md` to properly exclude all .md files at any depth. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 4742ca0 commit 7b94c55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
filters: |
5050
code:
5151
- '**'
52-
- '!**.md'
52+
- '!**/*.md'
5353
- '!docs/**'
5454
- '!.github/ISSUE_TEMPLATE/**'
5555
- '!.github/pull_request_template.md'

0 commit comments

Comments
 (0)