File tree Expand file tree Collapse file tree 2 files changed +60
-0
lines changed Expand file tree Collapse file tree 2 files changed +60
-0
lines changed Original file line number Diff line number Diff line change
1
+ template : |
2
+ ## :books: Changes since last version
3
+
4
+ $CHANGES
5
+
6
+ ##### :clap: Many thanks to everyone who participated in this release :point_down:
7
+ $CONTRIBUTORS
8
+
9
+ replacers :
10
+ - search : ' /BB-(\d+)/g'
11
+ replace : ' https://tickets.metabrainz.org/browse/BB-$1'
12
+
13
+ categories :
14
+ - title : ' 🚂 New features and bug fixes'
15
+ - title : ' :wrench: Maintenance'
16
+ collapse-after : 3
17
+ labels :
18
+ - ' dependencies'
19
+
20
+ exclude-contributors :
21
+ - ' dependabot'
22
+
23
+ version-resolver :
24
+ major :
25
+ labels :
26
+ - ' major'
27
+ minor :
28
+ labels :
29
+ - ' minor'
30
+ patch :
31
+ labels :
32
+ - ' patch'
33
+ default : patch
Original file line number Diff line number Diff line change
1
+ # This workflow updates the release draft as PRs are merged
2
+ name : Release drafter
3
+
4
+ on :
5
+ push :
6
+ branches : [ master ]
7
+
8
+
9
+ jobs :
10
+ update_release_draft :
11
+
12
+ permissions :
13
+ # write permission is required to create a github release
14
+ contents : write
15
+
16
+ runs-on : ubuntu-latest
17
+
18
+ steps :
19
+
20
+ # Drafts the next Release notes
21
+ - name : Release Drafter
22
+ uses : release-drafter/release-drafter@v5
23
+ with :
24
+ config-name : release-drafter.yml
25
+ disable-autolabeler : true
26
+ env :
27
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments