Skip to content

Commit

Permalink
ci(commitlint): allow release commit style
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 81b98e8 commit df8ca38
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit df8ca38

Please sign in to comment.