From 1eb625279d2f2c592f8cc3cba80cf901833b060c Mon Sep 17 00:00:00 2001 From: Kex Date: Thu, 4 Apr 2024 01:25:15 +0200 Subject: [PATCH] Add release notes config (#29) --- .github/release.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/release.yml diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 00000000..80b160dd --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,21 @@ +changelog: + categories: + - title: '**ADDED:**' + labels: + - 'kind/feature' + - title: '**IMPROVED:**' + labels: + - 'kind/enhancement' + - 'kind/optimization' + - title: '**CHANGED:**' + labels: + - 'kind/cleanup' + - title: '**FIXED:**' + labels: + - 'kind/bug' + - title: '**TRANSLATIONS:**' + labels: + - 'kind/translation' + exclude: + labels: + - 'ignore-changelog'