Skip to content

Commit

Permalink
ci(commitlint): allow release commit style (#675)
Browse files Browse the repository at this point in the history
Allow unconventional commit style for the chore release commits created
by Release Please.
  • Loading branch information
tiborsimko committed Feb 29, 2024
1 parent 71b3f38 commit e0299ef
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions run-tests.sh
Expand Up @@ -58,6 +58,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
Expand Down

0 comments on commit e0299ef

Please sign in to comment.