Skip to content

Commit

Permalink
Fix the changelog extension check
Browse files Browse the repository at this point in the history
  • Loading branch information
lubosmj authored Sep 30, 2024
1 parent c4cd2b8 commit 30cbc1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/github/.ci/scripts/pr_labels.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(".")

Expand Down

0 comments on commit 30cbc1f

Please sign in to comment.