From 94f8b70b49b1d7e8e10f3c04827bafc7f9d9707c Mon Sep 17 00:00:00 2001 From: Petr Kraus Date: Wed, 14 Aug 2019 00:54:01 +0200 Subject: ci: Relax summary limit to 64 from 54 --- scripts/check_commit_message_format.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scripts') diff --git a/scripts/check_commit_message_format.sh b/scripts/check_commit_message_format.sh index 8bc83830a..4eb5de8b7 100755 --- a/scripts/check_commit_message_format.sh +++ b/scripts/check_commit_message_format.sh @@ -55,9 +55,9 @@ printf %s "$COMMIT_TEXT" | while IFS='' read -r line; do fi chars=${#line} if [ $current_line -eq 1 ]; then - # Subject line should be 50 chars or less (but give some slack here) - if [ $chars -gt 54 ]; then - echo "The following subject line exceeds 50 characters in length." + # Subject line should be 64 chars or less + if [ $chars -gt 64 ]; then + echo "The following subject line exceeds 64 characters in length." echo " '$line'" success=0 fi -- cgit v1.2.3