From 9c1b1e32dfb59c11595679772da86e99ff6484a2 Mon Sep 17 00:00:00 2001 From: Ivana Kellyer Date: Tue, 25 Nov 2025 10:13:31 +0100 Subject: [PATCH 1/2] feat: Add an initial changelog config --- .github/release.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/release.yml diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 0000000000..e190d8e681 --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,19 @@ +changelog: + exclude: + labels: + - skip-changelog + authors: + - dependabot + categories: + - title: New Features ✨ + labels: + - "Changelog: Feature" + - title: Bug Fixes 🐛 + labels: + - "Changelog: Bugfix" + - title: Documentation 📚 + labels: + - "Changelog: Docs" + - title: Internal Changes 🔧 + labels: + - "Changelog: Internal" From eb6f4657fabbcd723769e0d296ae9514f2c168a8 Mon Sep 17 00:00:00 2001 From: Ivana Kellyer Date: Tue, 25 Nov 2025 10:22:23 +0100 Subject: [PATCH 2/2] Add more labels --- .github/release.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/release.yml b/.github/release.yml index e190d8e681..f17b69c0d1 100644 --- a/.github/release.yml +++ b/.github/release.yml @@ -8,12 +8,19 @@ changelog: - title: New Features ✨ labels: - "Changelog: Feature" + - Feature + - Improvement + - New Integration - title: Bug Fixes 🐛 labels: - "Changelog: Bugfix" + - Bug - title: Documentation 📚 labels: - "Changelog: Docs" + - Docs + - "Component: Docs" - title: Internal Changes 🔧 labels: - "Changelog: Internal" + - Quality Improvement