diff options
author | Earl Warren <contact@earl-warren.org> | 2024-08-01 15:49:05 +0200 |
---|---|---|
committer | Earl Warren <contact@earl-warren.org> | 2024-08-01 20:56:34 +0200 |
commit | 9597e041da3f8d57b175d6513a9086f65536227e (patch) | |
tree | 26dd6da51ed7e5faca9f08ee842471201fa43199 /release-notes-assistant.sh | |
parent | [I18N] Translations update from Weblate (#4668) (diff) | |
download | forgejo-9597e041da3f8d57b175d6513a9086f65536227e.tar.xz forgejo-9597e041da3f8d57b175d6513a9086f65536227e.zip |
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>
Diffstat (limited to 'release-notes-assistant.sh')
-rwxr-xr-x | release-notes-assistant.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/release-notes-assistant.sh b/release-notes-assistant.sh index e8eb7ef2a0..630fa91533 100755 --- a/release-notes-assistant.sh +++ b/release-notes-assistant.sh @@ -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 |