Skip to content

Commit 2c53673

Browse files
committed
add excluded conventional commit patterns
1 parent 8494b09 commit 2c53673

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

pyproject.toml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,15 @@ prerelease_token = "rc"
199199
prerelease = false
200200

201201
[tool.semantic_release.changelog]
202-
exclude_commit_patterns = []
202+
exclude_commit_patterns = [
203+
'''chore(?:\([^)]*?\))?: .+''',
204+
'''ci(?:\([^)]*?\))?: .+''',
205+
'''refactor(?:\([^)]*?\))?: .+''',
206+
'''style(?:\([^)]*?\))?: .+''',
207+
'''test(?:\([^)]*?\))?: .+''',
208+
'''build\((?!deps\): .+)''',
209+
'''Initial [Cc]ommit.*''',
210+
]
203211
mode = "update"
204212
insertion_flag = "<!-- version list -->"
205213
template_dir = "templates"

0 commit comments

Comments
 (0)