We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cf1092 commit d75f783Copy full SHA for d75f783
.github/workflows/label.yml
@@ -0,0 +1,15 @@
1
+name: "Issue Labeler"
2
+on:
3
+ issues:
4
+ types: [opened, edited]
5
+
6
+jobs:
7
+ triage:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: github/issue-labeler
11
+ with:
12
+ repo-token: "${{ secrets.GITHUB_TOKEN }}"
13
+ configuration-path: .github/labeler.yml
14
+ enable-versioned-regex: 0
15
+ include-title: 1
.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']
0 commit comments