We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b895018 commit b56f5c5Copy full SHA for b56f5c5
.github/labeler.yml
@@ -0,0 +1,3 @@
1
+# Add 'untriaged' label to any issue that gets opened
2
+untriaged:
3
+- '/.*/'
.github/workflows/labeler.yml
@@ -0,0 +1,18 @@
+name: "Issue Labeler"
+on:
+ issues:
4
+ types: [opened]
5
+
6
+permissions:
7
+ issues: write
8
+ contents: read
9
10
+jobs:
11
+ triage:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: github/issue-labeler@v3.4
15
+ with:
16
+ configuration-path: .github/labeler.yml
17
+ enable-versioned-regex: 0
18
+ repo-token: ${{ github.token }}
0 commit comments