From 12700ad354405d9997e37bf4f464420f3f6e73a4 Mon Sep 17 00:00:00 2001 From: Matthias Dellweg Date: Wed, 28 May 2025 14:14:02 +0200 Subject: [PATCH] Remove uneeded release reasons Docs are built only from the main branch, and deprecations and removals are newer a reason to push for a release. --- templates/github/.ci/scripts/check_release.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/github/.ci/scripts/check_release.py b/templates/github/.ci/scripts/check_release.py index dfc4a41e..81bae1fd 100755 --- a/templates/github/.ci/scripts/check_release.py +++ b/templates/github/.ci/scripts/check_release.py @@ -10,8 +10,8 @@ from git import Repo RELEASE_BRANCH_REGEX = r"^([0-9]+)\.([0-9]+)$" -Y_CHANGELOG_EXTS = [".feature", ".removal", ".deprecation"] -Z_CHANGELOG_EXTS = [".bugfix", ".doc", ".misc"] +Y_CHANGELOG_EXTS = [".feature"] +Z_CHANGELOG_EXTS = [".bugfix", ".misc"] def options():