Skip to content

Commit f8aa376

Browse files
committed
🔧 chore(core): test icons [patch candidate]
1 parent 02ecdf2 commit f8aa376

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

control_commit/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def validate_commit_message(commit_msg: str) -> bool:
138138
bool: True if valid, False otherwise.
139139
"""
140140
match = COMMIT_MESSAGE_REGEX.match(commit_msg)
141-
if match:
141+
if match or commit_msg.__contains__("Bump version:"):
142142
logger.debug("Commit message structure is valid.")
143143
return True
144144
else:

0 commit comments

Comments
 (0)