Skip to content

Commit 92491be

Browse files
committed
Fixed: temporary fix for testing purposes of messages:
1 parent ab57bcc commit 92491be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script/commit_message.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def main():
2323
commits = commits.decode("utf-8").split('\n')
2424
for commit in commits:
2525

26-
pattern = r'((build|ci|docs|feat|fix|perf|refactor|style|test|chore|revert)(\([\w\-]+\))?:\s.*)|((Merge)(\([\w\-]+\))?\s.*)' # noqa
26+
pattern = r'((build|ci|docs|feat|fix|perf|refactor|style|test|chore|revert)(\([\w\-]+\))?:\s.*)|((Merge|Fixed)(\([\w\-]+\))?\s.*)' # noqa
2727
m = re.match(pattern, commit)
2828
if m is None:
2929
print("\nError with git message '{}' style".format(commit))

0 commit comments

Comments
 (0)