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 d75f78372 autoLabel (#504)
d75f78372 is described below
commit d75f78372756f655825980334a9743fe6d890a7d
Author: Vedansh Saini <[email protected]>
AuthorDate: Tue Mar 4 03:38:56 2025 +0530
autoLabel (#504)
---
.github/workflows/label.yml | 15 +++++++++++++++
.github/workflows/labeler.yml | 10 ++++++++++
2 files changed, 25 insertions(+)
diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml
new file mode 100644
index 000000000..5665488d6
--- /dev/null
+++ b/.github/workflows/label.yml
@@ -0,0 +1,15 @@
+name: "Issue Labeler"
+on:
+ issues:
+ types: [opened, edited]
+
+jobs:
+ triage:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: github/issue-labeler
+ with:
+ repo-token: "${{ secrets.GITHUB_TOKEN }}"
+ configuration-path: .github/labeler.yml
+ enable-versioned-regex: 0
+ include-title: 1
\ No newline at end of file
diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml
new file mode 100644
index 000000000..560b17678
--- /dev/null
+++ b/.github/workflows/labeler.yml
@@ -0,0 +1,10 @@
+# Label configuration for GitHub Actions labeler
+
+bug:
+ - any: ['.github/ISSUE_TEMPLATE/bug_report.md']
+
+feature:
+ - any: ['.github/ISSUE_TEMPLATE/feature_request.md']
+
+documentation:
+ - any: ['.github/ISSUE_TEMPLATE/documentation_issue.md']
\ No newline at end of file