chore(changelog): skip placeholder commits in changelog (#1704)

This commit is contained in:
Orhun Parmaksız 2025-03-06 01:49:10 +03:00 committed by GitHub
parent 92a19cb604
commit 4bd7c6dfa9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -100,6 +100,8 @@ commit_preprocessors = [
]
# regex for parsing and grouping commits
commit_parsers = [
# release-plz adds 000000 as a placeholder for release commits
{ field = "id", pattern = "0000000", skip = true },
{ message = "^feat", group = "<!-- 00 -->Features" },
{ message = "^[fF]ix", group = "<!-- 01 -->Bug Fixes" },
{ message = "^refactor", group = "<!-- 02 -->Refactor" },