Skip to content

Commit

Permalink
ci: labeler: use globstar where applicable
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
jeckersb committed Dec 19, 2024
1 parent 6759010 commit 9d6de63
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
documentation:
- changed-files:
- any-glob-to-any-file:
- 'docs/*'
- 'docs/**'
- README.md

# Automatically bypass most CI for doc-only changes
control/skip-ci:
- changed-files:
- any-glob-to-all-files:
- 'docs/*'
- 'docs/**'
- README.md

area/install:
- changed-files:
- any-glob-to-any-file: 'lib/src/install*'
- any-glob-to-any-file:
- 'lib/src/install.rs'
- 'lib/src/install/**'

0 comments on commit 9d6de63

Please sign in to comment.