0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

fix(changelog): ignore lines containing whitespace in breaking change commits

This commit is contained in:
Marc Cornellà 2023-04-03 23:27:14 +02:00
parent 1ad167dfac
commit c7bb88f9ad
No known key found for this signature in database
GPG key ID: 0314585E776A9C1B

View file

@ -106,6 +106,9 @@ function parse-commit {
message="${match[1]}"
# remove CR characters (might be inserted in GitHub UI commit description form)
message="${message//$'\r'/}"
# remove lines containing only whitespace
local nlnl=$'\n\n'
message="${message//$'\n'[[:space:]]##$'\n'/$nlnl}"
# skip next paragraphs (separated by two newlines or more)
message="${message%%$'\n\n'*}"
# ... and replace newlines with spaces