From fec9f744b94519d927fcb962d5d9c9ae2fb8880a Mon Sep 17 00:00:00 2001 From: Felix Exner Date: Tue, 20 May 2025 08:51:29 +0200 Subject: [PATCH] Add a release config file for GitHub release note auto-generation Github allows customizing the auto-generated changelogs. This is a first attempt to configure that. (cherry picked from commit f94809fcefeab162857dff4e260936e553371f30) --- .github/release.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/release.yml diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 000000000..cf114c938 --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,23 @@ +--- +changelog: + exclude: + labels: + - release + categories: + - title: Bugfixes + labels: + - bugfix + - title: New features + labels: + - enhancement + - title: Documentation + labels: + - documentation + - title: CI/ Repo / Packages + labels: + - CI + - package + - dependencies + - title: Other + labels: + - "*"