Skip to content

Commit

Permalink
Improve auto-generated release-notes (#185)
Browse files Browse the repository at this point in the history
Adding an initial `.github/release.yml` 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 committed Feb 18, 2022
1 parent 311c98a commit 0ed5e21
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# SPDX-FileCopyrightText: 2022 Sequent Tech Inc <legal@sequentech.io>
#
# SPDX-License-Identifier: AGPL-3.0-only

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 0ed5e21

Please sign in to comment.