From 73d2ca4819c42973d1d0d0a51de3c6bd03ecfead Mon Sep 17 00:00:00 2001 From: Ivana Kellyer Date: Wed, 3 Dec 2025 15:11:11 +0100 Subject: [PATCH] fix: Fix changelog config --- .github/release.yml | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/.github/release.yml b/.github/release.yml index 37ec0bb752..058bc4d5bb 100644 --- a/.github/release.yml +++ b/.github/release.yml @@ -8,17 +8,13 @@ changelog: - title: New Features ✨ labels: - "Changelog: Feature" - - Feature - - Improvement - - New Integration commit_patterns: - - "^feat(\([a-zA-Z0-9_-]+\))?:" + - "^feat\\b" - title: Bug Fixes 🐛 labels: - "Changelog: Bugfix" - - Bug commit_patterns: - - "^(fix|bugfix)(\([a-zA-Z0-9_-]+\))?:" + - "^(fix|bugfix)\\b" - title: Deprecations 🏗️ labels: - "Changelog: Deprecation" @@ -27,13 +23,10 @@ changelog: - title: Documentation 📚 labels: - "Changelog: Docs" - - Docs - - "Component: Docs" commit_patterns: - - "^docs(\([a-zA-Z0-9_-]+\))?:" + - "^docs?\\b" - title: Internal Changes 🔧 labels: - "Changelog: Internal" - - Quality Improvement commit_patterns: - - "^(build|ref|chore|ci|tests|test)(\([a-zA-Z0-9_-]+\))?:" + - "^(build|ref|chore|ci|tests?)\\b"