From 0fc9794bfbe2799bb9666ec5b2ff1dd15def8c34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tibor=20=C5=A0imko?= Date: Thu, 29 Feb 2024 18:33:29 +0100 Subject: [PATCH] ci(commitlint): allow release commit style (#443) 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 3ffa94df..987f76d7 100755 --- a/run-tests.sh +++ b/run-tests.sh @@ -66,6 +66,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