File tree Expand file tree Collapse file tree 2 files changed +59
-0
lines changed Expand file tree Collapse file tree 2 files changed +59
-0
lines changed Original file line number Diff line number Diff line change 1+ ame-template : ' v$RESOLVED_VERSION'
2+ tag-template : ' v$RESOLVED_VERSION'
3+ template : |
4+ # What's Changed
5+ $CHANGES
6+ categories :
7+ - title : Added
8+ labels :
9+ - ' changelog:added'
10+ - title : Changed
11+ labels :
12+ - ' changelog:changed'
13+ - title : Deprecated
14+ labels :
15+ - ' changelog:deprecated '
16+ - title : Removed
17+ labels :
18+ - ' changelog:removed'
19+ - title : Fixed
20+ labels :
21+ - ' changelog:fixed'
22+ - title : Security
23+ labels :
24+ - security
25+ - changelog:security
26+ - title : ' Dependency Updates'
27+ labels :
28+ - dependencies
29+
30+ version-resolver :
31+ major :
32+ labels :
33+ - ' changelog:removed'
34+ minor :
35+ labels :
36+ - ' changelog:added'
37+ - ' changelog:deprecated'
38+ patch :
39+ labels :
40+ - ' changelog:fixed'
41+ - ' changelog:security'
42+ - ' dependency'
43+
44+ exclude-labels :
45+ - ' skip-changelog'
Original file line number Diff line number Diff line change 1+ name : Release Drafter
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+
8+ jobs :
9+ update_release_draft :
10+ runs-on : ubuntu-latest
11+ steps :
12+ - uses : release-drafter/release-drafter@v5
13+ env :
14+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments