File tree Expand file tree Collapse file tree 2 files changed +71
-0
lines changed Expand file tree Collapse file tree 2 files changed +71
-0
lines changed Original file line number Diff line number Diff line change 1+ name-template : ' v$RESOLVED_VERSION'
2+ tag-template : ' v$RESOLVED_VERSION'
3+ categories :
4+ -
5+ title : ' Features'
6+ labels :
7+ - ' enhancement'
8+ - ' feat'
9+ - ' feature'
10+ -
11+ title : ' Bug Fixes'
12+ labels :
13+ - ' bug'
14+ - ' bugfix'
15+ - ' fix'
16+ -
17+ title : ' Maintenance'
18+ labels :
19+ - ' chore'
20+ - ' style'
21+ change-template : ' - $TITLE @$AUTHOR (#$NUMBER)'
22+ change-title-escapes : ' \<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
23+ version-resolver :
24+ major :
25+ labels : ['major']
26+ minor :
27+ labels : ['minor']
28+ patch :
29+ labels : ['patch']
30+ default : patch
31+ exclude-labels : ['skip']
32+ autolabeler :
33+ -
34+ label : ' bug'
35+ branch :
36+ - ' /bug\/.+/'
37+ - ' /bugfix\/.+/'
38+ - ' /fix\/.+/'
39+ -
40+ label : ' enhancement'
41+ branch :
42+ - ' /dependabot\/.+/'
43+ - ' /enhancement\/.+/'
44+ - ' /feat\/.+/'
45+ - ' /feature\/.+/'
46+ -
47+ label : ' chore'
48+ branch :
49+ - ' /chore\/.+/'
50+ - ' /style\/.+/'
51+ template : |
52+ ## Release notes
53+
54+ $CHANGES
Original file line number Diff line number Diff line change 1+ name : Release drafter
2+
3+ on :
4+ push :
5+ branches : [main]
6+ pull_request :
7+ types : [opened, reopened, synchronize]
8+
9+ jobs :
10+ update_release_draft :
11+ name : Update draft release
12+ runs-on : ubuntu-latest
13+ steps :
14+ -
15+ uses : release-drafter/release-drafter@v5
16+ env :
17+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments