We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab57bcc commit 92491beCopy full SHA for 92491be
script/commit_message.py
@@ -23,7 +23,7 @@ def main():
23
commits = commits.decode("utf-8").split('\n')
24
for commit in commits:
25
26
- pattern = r'((build|ci|docs|feat|fix|perf|refactor|style|test|chore|revert)(\([\w\-]+\))?:\s.*)|((Merge)(\([\w\-]+\))?\s.*)' # noqa
+ pattern = r'((build|ci|docs|feat|fix|perf|refactor|style|test|chore|revert)(\([\w\-]+\))?:\s.*)|((Merge|Fixed)(\([\w\-]+\))?\s.*)' # noqa
27
m = re.match(pattern, commit)
28
if m is None:
29
print("\nError with git message '{}' style".format(commit))
0 commit comments