File tree 3 files changed +32
-20
lines changed
3 files changed +32
-20
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -49,3 +49,23 @@ template: |
49
49
**Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...$RESOLVED_VERSION
50
50
51
51
Thanks to $CONTRIBUTORS for making this release possible.
52
+
53
+ autolabeler :
54
+ - label : ' 📒 Documentation'
55
+ matcher :
56
+ title : ' \b(docs|doc:|\[doc\]|README|typos|comment|documentation)\b'
57
+ - label : ' ☢️ Bug'
58
+ matcher :
59
+ title : ' \b(fix|race|bug|missing|correct)\b'
60
+ - label : ' 🧹 Updates'
61
+ matcher :
62
+ title : ' \b(improve|update|update|refactor|deprecated|remove|unused|test)\b'
63
+ - label : ' 🤖 Dependencies'
64
+ matcher :
65
+ title : ' \b(bumb|bdependencies)\b'
66
+ - label : ' ✏️ Feature'
67
+ matcher :
68
+ title : ' \b(feature|feat|create|implement|add)\b'
69
+ - label : ' 🤔 Question'
70
+ matcher :
71
+ title : ' \b(question|how)\b'
Original file line number Diff line number Diff line change 4
4
push :
5
5
branches :
6
6
- main
7
+ pull_request : # Autolabel PR's
8
+ types : [opened, reopened, synchronize]
9
+ pull_request_target : # Autolabel PR's from forks
10
+ types : [opened, reopened, synchronize]
7
11
8
12
jobs :
9
13
update_release_draft :
14
+ permissions :
15
+ # write permission is required to create a github release
16
+ contents : write
17
+ # write permission is required for autolabeler
18
+ # otherwise, read permission is required at least
19
+ pull-requests : write
10
20
runs-on : ubuntu-latest
11
21
steps :
12
22
- uses : release-drafter/release-drafter@v5
23
+ with :
24
+ commitish : main
13
25
env :
14
26
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments