action: extend commit message line limit to 150 bytes

So that we can add move info there and few people use such small
terminals nowadays.

Fixes: #4596
Signed-off-by: Peng Tao <bergwolf@hyper.sh>
(cherry picked from commit 3bafafec58)
Signed-off-by: Fabiano Fidêncio <fabiano.fidencio@intel.com>
This commit is contained in:
Peng Tao 2022-07-06 11:14:27 +08:00 committed by Fabiano Fidêncio
parent ac91fb7a12
commit dfc1413e4a

View File

@ -75,8 +75,8 @@ jobs:
# #
# - A SoB comment can be any length (as it is unreasonable to penalise # - A SoB comment can be any length (as it is unreasonable to penalise
# people with long names/email addresses :) # people with long names/email addresses :)
pattern: '^.+(\n([a-zA-Z].{0,72}|[^a-zA-Z\n].*|[^\s\n]*|Signed-off-by:.*|))+$' pattern: '^.+(\n([a-zA-Z].{0,150}|[^a-zA-Z\n].*|[^\s\n]*|Signed-off-by:.*|))+$'
error: 'Body line too long (max 72)' error: 'Body line too long (max 150)'
post_error: ${{ env.error_msg }} post_error: ${{ env.error_msg }}
- name: Check Fixes - name: Check Fixes