Skip to content

Commit 7ac5c44

Browse files
authored
gha: pr labeler label more file types (#2530)
Reasonable numbers of files to warrant labels for each type. Counts of file types with new labels shown below: - `find . -type f -name "*.xml" | wc -l` = 128 - `find . -type f -name "*.md" | wc -l` = 11 - `find . -type f -name "*.yml" | wc -l` = 17 - `find . -type f -name "*.yaml" | wc -l` = 2 To complete this PR we need to add the new labels on the repo label page: https://github.com/apache/shiro/labels 3 labels to be added for: "documentation", "xml", "yaml"
1 parent 483e546 commit 7ac5c44

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/labeler.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,28 @@ java:
3434
- any-glob-to-any-file:
3535
- '**/*.java'
3636

37+
documentation:
38+
- any:
39+
- changed-files:
40+
- any-glob-to-any-file:
41+
- '**/*.md'
42+
3743
tests:
3844
- any:
3945
- changed-files:
4046
- any-glob-to-any-file:
4147
- '**/src/test/groovy/**/*'
4248
- '**/src/test/java/**/*'
49+
50+
xml:
51+
- any:
52+
- changed-files:
53+
- any-glob-to-any-file:
54+
- '**/*.xml'
55+
56+
yaml:
57+
- any:
58+
- changed-files:
59+
- any-glob-to-any-file:
60+
- '**/*.yaml'
61+
- '**/*.yml'

0 commit comments

Comments
 (0)