From a0646b71286469df56348c627c6b6ec5118b332d Mon Sep 17 00:00:00 2001 From: Violeta Georgieva Date: Tue, 19 Mar 2024 12:40:29 +0200 Subject: [PATCH] Add release notes generator configuration --- .github/workflows/release.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..82a984d --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,25 @@ +changelog: + exclude: + labels: + - ignore-changelog + - type/chore + - type/dependency-upgrade + categories: + - title: ":warning: Update considerations and deprecations" + labels: + - "warn/api-change" + - "warn/behavior-change" + - "warn/deprecation" + - "warn/regression" + - title: ":sparkles: New features and improvements" + labels: + - "type/enhancement" + - title: ":lady_beetle: Bug fixes" + labels: + - "type/bug" + - title: ":book: Documentation" + labels: + - "type/documentation" + - title: ":question: Other Changes" + labels: + - "*"