Skip to content

Commit 426a2b0

Browse files
committed
ci(commitlint): allow release commit style (#400)
Allow unconventional commit style for the chore release commits created by Release Please.
1 parent 814d68e commit 426a2b0

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

run-tests.sh

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ check_commitlint () {
1818
while IFS= read -r line; do
1919
if echo "$line" | grep -qP "\(\#$pr\)$"; then
2020
true
21+
elif echo "$line" | grep -qP "^chore\(.*\): release"; then
22+
true
2123
else
2224
echo "✖ Headline does not end by '(#$pr)' PR number: $line"
2325
found=1

0 commit comments

Comments
 (0)