This is an automated email from the ASF dual-hosted git repository.
lprimak pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/shiro.git
The following commit(s) were added to refs/heads/main by this push:
new 7ac5c446e gha: pr labeler label more file types (#2530)
7ac5c446e is described below
commit 7ac5c446ee2ced243274bac941ef98b15d2ed1b8
Author: John Bampton <[email protected]>
AuthorDate: Tue Feb 10 02:48:16 2026 +1000
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"
---
.github/labeler.yml | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/.github/labeler.yml b/.github/labeler.yml
index a7dbb0b4e..f3747f245 100644
--- a/.github/labeler.yml
+++ b/.github/labeler.yml
@@ -34,9 +34,28 @@ java:
- any-glob-to-any-file:
- '**/*.java'
+documentation:
+ - any:
+ - changed-files:
+ - any-glob-to-any-file:
+ - '**/*.md'
+
tests:
- any:
- changed-files:
- any-glob-to-any-file:
- '**/src/test/groovy/**/*'
- '**/src/test/java/**/*'
+
+xml:
+ - any:
+ - changed-files:
+ - any-glob-to-any-file:
+ - '**/*.xml'
+
+yaml:
+ - any:
+ - changed-files:
+ - any-glob-to-any-file:
+ - '**/*.yaml'
+ - '**/*.yml'