-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: rework release note handling (#1139)
<!-- markdownlint-disable MD041 --> #### What this PR does / why we need it reworks release note management based on github release note api It does this in the following way: 1. Creates a tag on cutoff that is annotated 2. Calls the Github Release Note API together with a release note configuration file (very similar to drafter but allows us to specify a previous tag) 3. Generates the notes for the current branch based on the last found tag. This has the advantage that we can explicitly determine which release notes are generated from when to when and also use the contributors fields. TODO: 1. Test on other repo 2. Make sure that the Merge commit in main that we used for testing disappears. #### Which issue(s) this PR fixes <!-- Usage: `Fixes #<issue number>`, or `Fixes (paste link of issue)`. -->
- Loading branch information
1 parent
4205242
commit 7b3927d
Showing
5 changed files
with
128 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
changelog: | ||
exclude: | ||
labels: | ||
- 'kind/skip-release-notes' | ||
- 'wontfix' | ||
- 'triage/wont-fix' | ||
- 'triage/invalid' | ||
categories: | ||
- title: '‼️ Breaking Changes' | ||
labels: | ||
- 'breaking-change' | ||
- title: '🚀 Features' | ||
labels: | ||
- 'kind/enhancement' | ||
- 'feature' | ||
- 'enhancement' | ||
- title: '🐛 Bug Fixes' | ||
labels: | ||
- 'kind/bug' | ||
- 'fix' | ||
- 'bugfix' | ||
- 'bug' | ||
- title: '🧰 Maintenance' | ||
labels: | ||
- 'chore' | ||
- title: '⬆️ Dependencies' | ||
labels: | ||
- 'dependencies' |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters