Skip to content

Commit c5778b1

Browse files
committed
Add GH release-notes generation config
1 parent f496601 commit c5778b1

2 files changed

Lines changed: 17 additions & 1 deletion

File tree

.github/release.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
changelog:
2+
exclude:
3+
labels:
4+
- ignore-for-release
5+
categories:
6+
- title: Breaking Changes
7+
labels:
8+
- breaking-change
9+
- title: Exciting New Features 🎉
10+
labels:
11+
- enhancement
12+
- title: Bugfixes 🐛
13+
labels:
14+
- bug
15+
- title: Other Changes
16+
labels:
17+
- "*"

.github/workflows/Release.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ jobs:
2929
run: dotnet pack source /p:Version=${{ steps.gitversion.outputs.majorMinorPatch }} /p:InformationalVersion=${{ steps.gitversion.outputs.informationalVersion }} /p:PackageReleaseNotes="https://github.com/$GITHUB_REPOSITORY/releases/tag/${{ steps.gitversion.outputs.majorMinorPatch }}" -o ./releases
3030
- name: Publish
3131
run: dotnet nuget push ./releases/**/*.nupkg -k=${{ secrets.NUGETORGAPIKEY }} -s=nuget.org
32-
- run: git log $(git describe --tags --abbrev=0)..HEAD --oneline
3332
- name: Generate CHANGELOG.md
3433
id: releasenotes
3534
run: |

0 commit comments

Comments
 (0)