Skip to content

Commit 9925299

Browse files
committed
CI: Generate release with changelog
1 parent 4e211f8 commit 9925299

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

.github/release.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
changelog:
2+
categories:
3+
- title: New features
4+
labels:
5+
- enhancement
6+
- title: Bug fixes
7+
labels:
8+
- bug
9+
- title: Documentation
10+
labels:
11+
- documentation
12+
- title: Other changes
13+
labels:
14+
- "*"

.github/workflows/release.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Releases
2+
3+
on:
4+
push:
5+
tags:
6+
- "*"
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
contents: write
13+
steps:
14+
- uses: actions/checkout@v3
15+
- uses: ncipollo/release-action@v1
16+
with:
17+
generateReleaseNotes: "true"

0 commit comments

Comments
 (0)