Skip to content

Commit ec6a841

Browse files
committed
fix: message lenght
1 parent 9427db1 commit ec6a841

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/hooks/commit-msg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ if ! head -1 "$1" | grep -qE "^(feat|fix|ci|chore|docs|test|style|refactor|chk)(
3131
echo "For more information check https://www.conventionalcommits.org/en/v1.0.0/ for more details" >&2
3232
exit 1
3333
fi
34-
if ! head -1 "$1" | grep -qE "^.{1,50}$"; then
34+
if ! head -1 "$1" | grep -qE "^.{1,150}$"; then
3535
echo "Aborting commit. Your commit message is too long." >&2
3636
exit 1
3737
fi

0 commit comments

Comments
 (0)