From a6f95aca9ca1b3fb1663ee2fa7d876ff0da2bf02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tibor=20=C5=A0imko?= Date: Thu, 29 Feb 2024 18:28:31 +0100 Subject: [PATCH] ci(commitlint): allow release commit style (#785) 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 a5b68cd6..4df7bc4a 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