From 30cbc1fdb83c26f322af37ba8ec72778d215e91a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=BDubo=C5=A1=20Mjachky?= Date: Mon, 30 Sep 2024 10:20:55 +0200 Subject: [PATCH] Fix the changelog extension check --- templates/github/.ci/scripts/pr_labels.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/github/.ci/scripts/pr_labels.py b/templates/github/.ci/scripts/pr_labels.py index 24edc732..0c478a21 100755 --- a/templates/github/.ci/scripts/pr_labels.py +++ b/templates/github/.ci/scripts/pr_labels.py @@ -23,7 +23,7 @@ def main(): f".{item['directory']}" for item in PYPROJECT_TOML["tool"]["towncrier"]["type"] } except KeyError: - CHANGELOG_EXTS = {"feature", "bugfix", "doc", "removal", "misc"} + CHANGELOG_EXTS = {".feature", ".bugfix", ".doc", ".removal", ".misc"} repo = Repo(".")