fix_: ignore description in commit check

This commit is contained in:
Andrea Maria Piana 2024-04-10 12:04:55 +01:00
parent 8c7a6aa54d
commit a9228df085
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ parse_commits() {
# Uncomment the line below if you want to exit on an invalid commit message
exit 1
fi
done < <(git log --format=%B "$start_commit".."$end_commit" | sed '/^\s*$/d')
done < <(git log --format=%s "$start_commit".."$end_commit")
echo "$is_breaking_change"
}