datacap/configure/git-hook/commit-msg

15 lines
635 B
Bash
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/sh
commit_msg=$(cat "$1")
email=$(git config user.email)
msg_re="^(\[Feature\]|\[Fix\]|\[Docs\]|\[Refactor\]|\[Test\]|\[Workflow\]|\[Build\]|\[Ci\]|\[Env\]|\[Release\]|\[Api\]|\[Web\]|\[Core\]|\[Spi\]|\[Plugin\]|\[Client\])(\(.+\))? .{1,100}"
if [[ ! $commit_msg =~ $msg_re ]]; then
printf "Invalid commit message submission format. Please use the correct format\
\n [Feature]|[Fix]|[Docs]|[Refactor]|[Test]|[Workflow]|[Build]|[Ci]|[Env]|[Release]|[Api]|[Web]|[Core]|[Spi]|[Plugin] \
\n [Feature]: Add comments \
\n [Fix]: Handle events on blur (close #28) %s"
exit 1
fi