fix(release-notes-assistant): categorize multiline drafts & cleanup

Upgrade to release-notes-assistant 1.1.1:

* multiline release notes drafts were incorrectly categorized
  according the first line, instead of for each line
* when there is a backport, link the original PR first
* remove spurious </a>
This commit is contained in:
Earl Warren 2024-08-01 15:49:05 +02:00
parent 3d3ddd7704
commit 9597e041da
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00
3 changed files with 36 additions and 3 deletions

View file

@ -48,7 +48,7 @@ function test_main() {
test "$(categorize)" = 'ZE Other changes without a feature or bug label'
test_payload_labels
test "$(categorize)" = 'ZF Included for completness but not worth a release note'
test "$(categorize)" = 'ZF Included for completeness but not worth a release note'
test_payload_draft "feat!: breaking feature"
test "$(categorize)" = 'AA Breaking features'
@ -99,7 +99,7 @@ function categorize() {
#
if test -z "$(jq --raw-output .Draft <$payload)"; then
if ! $worth; then
echo -n ZF Included for completness but not worth a release note
echo -n ZF Included for completeness but not worth a release note
exit 0
fi
fi