From 1208ccf2de844afe788d7bbccbd4f63b24af427e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tibor=20=C5=A0imko?= Date: Thu, 29 Feb 2024 18:31:08 +0100 Subject: [PATCH] ci(commitlint): allow release commit style (#447) 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 6cf965a9..f5d0150f 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