Skip to content

Commit

Permalink
Improve auto-generated release-notes (#267)
Browse files Browse the repository at this point in the history
Adding an initial  file similar to https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes#example-configuration

This will allow the auto-generated release-notes for new project releases to be more useful, by grouping and categorizing all PRs.
  • Loading branch information
edulix authored Feb 18, 2022
1 parent 580031b commit 9225e93
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# .github/release.yml

changelog:
exclude:
labels:
- ignore-for-release
categories:
- title: 💥 Breaking Changes
labels:
- breaking-change
- title: 🚀 New Features
labels:
- enhancement
- title: 🛠 Bug Fixes
labels:
- bug
- title: 🛡 Security Updates
labels:
- dependencies
- security-update
- title: 📖 Documentation Improvements
labels:
- doc
- title: Other Changes
labels:
- "*"

0 comments on commit 9225e93

Please sign in to comment.