From bc3cd77e0fb62cc828052cdf8948ad3776dcd0f0 Mon Sep 17 00:00:00 2001 From: zeevdr Date: Wed, 29 Apr 2026 14:50:59 +0300 Subject: [PATCH] ci: add release.yml for categorized release notes Groups auto-generated release notes by label: Breaking / Features / Bug Fixes / Documentation / Dependencies / Other. Excludes duplicate/invalid/wontfix from notes. Refs opendecree/decree#145 --- .github/release.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/release.yml diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 0000000..87110a4 --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,26 @@ +changelog: + exclude: + labels: + - duplicate + - invalid + - wontfix + categories: + - title: "⚠️ Breaking Changes" + labels: + - breaking + - title: "Features" + labels: + - enhancement + - title: "Bug Fixes" + labels: + - bug + - title: "Documentation" + labels: + - docs + - documentation + - title: "Dependencies" + labels: + - dependencies + - title: "Other Changes" + labels: + - "*"