Skip to content

Commit

Permalink
Adding release.yml to autogenerate release notes on github
Browse files Browse the repository at this point in the history
This feature doesn't work great, but it does let you do a test release to see which PRs have been merged since the last tag.  Maybe in future github will make it more flexible too.
  • Loading branch information
jgostick committed Jun 22, 2023
1 parent 8119bd9 commit 9847958
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# .github/release.yml

changelog:
exclude:
labels:
- ignore-for-release
authors:
- octocat
categories:
- title: Breaking Changes ⚠️
labels:
- Semver-Major
- breaking-change
- api
- title: New Features 🎉
labels:
- Semver-Minor
- enhancement
- new
- title: Maintenance 🛠
labels:
- Semver-Patch
- maint
- title: Documentation 📗
labels:
- doc
- example
- title: Big Fixes 🐛
labels:
- Semver-Patch
- bug
- title: Other Changes ❓
labels:
- "*"

0 comments on commit 9847958

Please sign in to comment.