Skip to content

Commit df453f6

Browse files
ijovovictmilos77dushanpantic
authored
Generate release notes (#894)
Co-authored-by: Milos Tomic <[email protected]> Co-authored-by: Dušan Pantić <[email protected]>
1 parent 71afc77 commit df453f6

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

.github/workflows/.grenrc.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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 numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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

0 commit comments

Comments
 (0)