From e6cc181b745981527c633a762cb2e380b96e69b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A1roly=20Erd=C5=91s?= <2183410+ke4@users.noreply.github.com> Date: Thu, 28 Nov 2024 10:28:20 +0000 Subject: [PATCH] Add config file for release notes generation --- .github/release.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/release.yml diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 00000000..558b6029 --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,28 @@ +# .github/release.yml + +changelog: + exclude: + labels: + - ignore-for-release + categories: + - title: 🛠 Breaking Changes + labels: + - Semver-Major + - breaking-change + - title: 🎉 Exciting New Features + labels: + - Semver-Minor + - enhancement + - improvement + - feature + - title: 📜 Documentation + labels: + - documentation + - title: 🐞 Bug Fixes + labels: + - fix + - bug + - bugfix + - title: 💡 Other Changes + labels: + - "*"