File tree 2 files changed +36
-0
lines changed
2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "dataSource" : " milestones" ,
3
+ "prefix" : " " ,
4
+ "groupBy" : {
5
+ ":fire: Enhancements:" : [" kind/feature" ],
6
+ ":bug: Bug fixes:" : [" kind/bug" ]
7
+ },
8
+ "milestoneMatch" : " {{tag_name}}" ,
9
+ "changelogFilename" : " CHANGELOG.md"
10
+ }
Original file line number Diff line number Diff line change
1
+ name : Generate Release Notes
2
+
3
+ on :
4
+ push :
5
+ tags :
6
+ - " *" # Triggers on any tag creation
7
+
8
+ jobs :
9
+ generate-release-notes :
10
+ runs-on : ubuntu-latest
11
+
12
+ steps :
13
+ - name : Checkout repository
14
+ uses : actions/checkout@v4
15
+
16
+ - name : Set up Node.js
17
+ uses : actions/setup-node@v4
18
+
19
+ - name : Install github-release-notes
20
+ run : npm install -g github-release-notes
21
+
22
+ - name : Generate release notes
23
+ env :
24
+ GREN_GITHUB_TOKEN : ${{ github.token }}
25
+ run : |
26
+ gren release --data-source=milestones --override
You can’t perform that action at this time.
0 commit comments