We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e8111e commit 57a9c26Copy full SHA for 57a9c26
.github/labeler.yml
@@ -0,0 +1,10 @@
1
+"kind/bug":
2
+ - '^[Ff]ix(\(.*\))?:?.*'
3
+"kind/cleanup":
4
+ - '^[Cc]hore(\(.*\))?:?.*'
5
+"kind/documentation":
6
+ - '^[Dd]ocs?(\(.*\))?:?.*'
7
+"kind/enhancement":
8
+ - '^[Rr]efactor(\(.*\))?:?.*'
9
+"kind/feature":
10
+ - '^[Ff]eat(\(.*\))?:?.*'
.github/workflows/auto-label-pr.yaml
@@ -0,0 +1,22 @@
+name: "PR Labeler"
+on:
+ pull_request_target:
+ types: [opened, edited]
+
+permissions:
+ issues: write
+ pull-requests: write
+ contents: read
11
+jobs:
12
+ labeling:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: github/[email protected]
16
+ with:
17
+ configuration-path: .github/labeler.yml
18
+ enable-versioned-regex: 0
19
+ sync-labels: 1
20
+ include-title: 1
21
+ include-body: 0
22
+ repo-token: ${{ github.token }}
0 commit comments