File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Config for https://github.com/apps/release-drafter
2+ name-template : ' v$NEXT_MINOR_VERSION (🌈 Insert Release Name)'
3+ tag-template : ' v$NEXT_MINOR_VERSION'
4+ categories :
5+ - title : ' Dependency Updates'
6+ label : ' dependencies'
7+ - title : ' 🚀 Features'
8+ labels :
9+ - ' feature'
10+ - ' enhancement'
11+ - title : ' 🐛 Bug Fixes'
12+ labels :
13+ - ' fix'
14+ - ' bugfix'
15+ - ' bug'
16+ exclude-labels :
17+ - ' skip-changelog'
18+ autolabeler :
19+ - label : ' documentation'
20+ files :
21+ - ' *.md'
22+ branch :
23+ - ' /docs{0,1}\/.+/'
24+ title :
25+ - ' /docs/i'
26+ - label : ' bug'
27+ branch :
28+ - ' /fix\/.+/'
29+ title :
30+ - ' /fix/i'
31+ - label : ' enhancement'
32+ branch :
33+ - ' /feature\/.+/'
34+ body :
35+ - ' /feature{0,1}\/.+/'
36+ title :
37+ - ' /feature/i'
38+ - label : ' refactor'
39+ branch :
40+ - ' /refactor\/.+/'
41+ title :
42+ - ' /refactor/i'
43+ template : |
44+ ## Changes
45+ $CHANGES
46+ ## Upgrading
47+ To upgrade, swap your docker-tags
48+ ```diff
49+ - subspacecommunity/subspace:$PREVIOUS_TAG
50+ + subspacecommunity/subspace:$NEXT_MINOR_VERSION
51+ ```
Original file line number Diff line number Diff line change 1+ name : Draft Release
2+
3+ on :
4+ push :
5+ branches :
6+ - master
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