From b50b6d0398fc6d6e4c4704d3698d811b7088921d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tibor=20=C5=A0imko?= Date: Thu, 29 Feb 2024 18:35:41 +0100 Subject: [PATCH] ci(commitlint): allow release commit style (#201) 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 ae9693c..c2b52c7 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