This is an automated email from the ASF dual-hosted git repository.
rawkintrevo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/mahout.git
The following commit(s) were added to refs/heads/main by this push:
new 09bc89c68 Update labeler worflow configuration (#577)
09bc89c68 is described below
commit 09bc89c688693fc6e35a05b1004d7a45b6fc13e4
Author: Guan Ming(Wesley) Chiu <[email protected]>
AuthorDate: Tue Oct 7 04:34:36 2025 +0800
Update labeler worflow configuration (#577)
* Update labeler configuration
* Update labeler config with regex
* Update docs label
---
.github/ISSUE_TEMPLATE/documentation_issue.md | 2 +-
.github/labeler.yml | 13 ++++++++-----
2 files changed, 9 insertions(+), 6 deletions(-)
diff --git a/.github/ISSUE_TEMPLATE/documentation_issue.md
b/.github/ISSUE_TEMPLATE/documentation_issue.md
index a5fbcc109..5b1f4bc6c 100644
--- a/.github/ISSUE_TEMPLATE/documentation_issue.md
+++ b/.github/ISSUE_TEMPLATE/documentation_issue.md
@@ -2,7 +2,7 @@
name: "Documentation Issue"
about: "Report issues related to documentation"
title: "[Docs] "
-labels: ["documentation"]
+labels: ["docs"]
assignees: []
---
diff --git a/.github/labeler.yml b/.github/labeler.yml
index 560b17678..b9b373347 100644
--- a/.github/labeler.yml
+++ b/.github/labeler.yml
@@ -1,10 +1,13 @@
# Label configuration for GitHub Actions labeler
bug:
- - any: ['.github/ISSUE_TEMPLATE/bug_report.md']
+ - '/(bug|error|fix|not working|broken)/i'
-feature:
- - any: ['.github/ISSUE_TEMPLATE/feature_request.md']
+enhancement:
+ - '/(feature|enhancement|improvement|add|new)/i'
-documentation:
- - any: ['.github/ISSUE_TEMPLATE/documentation_issue.md']
\ No newline at end of file
+docs:
+ - '/(doc|readme|guide|tutorial)/i'
+
+question:
+ - '/(question|help|how to|\?)/i'