Skip to content

Commit 9d6de63

Browse files
committed
ci: labeler: use globstar where applicable
It appears the single glob '*' doesn't match recursively, so use the globstar '**' where we want to match anything within a subtree Signed-off-by: John Eckersberg <[email protected]>
1 parent 6759010 commit 9d6de63

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/labeler.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
documentation:
22
- changed-files:
33
- any-glob-to-any-file:
4-
- 'docs/*'
4+
- 'docs/**'
55
- README.md
66

77
# Automatically bypass most CI for doc-only changes
88
control/skip-ci:
99
- changed-files:
1010
- any-glob-to-all-files:
11-
- 'docs/*'
11+
- 'docs/**'
1212
- README.md
1313

1414
area/install:
1515
- changed-files:
16-
- any-glob-to-any-file: 'lib/src/install*'
16+
- any-glob-to-any-file:
17+
- 'lib/src/install.rs'
18+
- 'lib/src/install/**'

0 commit comments

Comments
 (0)