diff --git a/run-tests.sh b/run-tests.sh index b69e805a..3396e016 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -58,6 +58,8 @@ check_commitlint () { while IFS= read -r line; do if echo "$line" | grep -qP "\(\#$pr\)$"; then true + elif echo "$line" | grep -qP "^chore\(.*\): release"; then + true else echo "✖ Headline does not end by '(#$pr)' PR number: $line" found=1