From 1b8b6b87782c4ea006d6bd5ca5b3f2e1bb721287 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tibor=20=C5=A0imko?= Date: Thu, 29 Feb 2024 18:36:23 +0100 Subject: [PATCH] ci(commitlint): allow release commit style (#262) Allow unconventional commit style for the chore release commits created by Release Please. --- run-tests.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/run-tests.sh b/run-tests.sh index 47b654a..b7bc925 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -18,6 +18,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