1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 05:47:34 +00:00

CI: Require a blank line between commit titles and bodies

This commit is contained in:
Idan Horowitz 2022-01-11 23:31:08 +02:00
parent 14f6856d1d
commit a8537ad096
2 changed files with 8 additions and 0 deletions

View file

@ -30,6 +30,10 @@ while read -r line; do
((line_number += 1))
line_length=${#line}
if [[ $line_number -eq 2 ]] && [[ $line_length -ne 0 ]]; then
error "Empty line between commit title and body is missing"
fi
category_pattern="^\S.*?\S: .+"
if [[ $line_number -eq 1 ]] && (echo "$line" | grep -E -v -q "$category_pattern"); then
error "Missing category in commit title (if this is a fix up of a previous commit, it should be squashed)"