Skip to content

Commit 554cc2d

Browse files
authored
Merge pull request #2 from tClelford/patch-1
fix: add missing ':' to fix rendering of ci emoji
2 parents a78e562 + 0114714 commit 554cc2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

commit_linter/hooks/commit-msg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ test: Adding missing tests or correcting existing tests
1919
"""
2020

2121
def main():
22-
emojies = {"new": ':tada:', "build" : ':construction:' , "ci" : ':green_heart', "docs": ':books:',
22+
emojies = {"new": ':tada:', "build" : ':construction:' , "ci" : ':green_heart:', "docs": ':books:',
2323
"feat" : ':sparkles:' ,"fix" : ':bug:', "perf": ':racehorse:', "refactor" : ':hammer:'
2424
, "style" : ':umbrella:', "test": ':heavy_check_mark:', "chore" : ':arrow_up:' , "revert" : ':rewind:'}
2525
pattern = r'(new|build|ci|docs|feat|fix|perf|refactor|style|test|chore|revert)(\([\w\-]+\))?:\s.*'

0 commit comments

Comments
 (0)