Skip to content

Commit

Permalink
Merge branch '3.3.x'
Browse files Browse the repository at this point in the history
Closes gh-43480
  • Loading branch information
philwebb committed Dec 10, 2024
2 parents 123502b + 709b9bb commit 52992fb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,13 @@ protected String issueBody(Upgrade upgrade, Issue existingUpgrade) {
if (releaseNotesLink != null) {
lines.add("Upgrade to [%s](%s).".formatted(description, releaseNotesLink));
}
lines.add("Upgrade to %s.".formatted(description));
else {
lines.add("Upgrade to %s.".formatted(description));
}
if (existingUpgrade != null) {
lines.add("Supersedes #" + existingUpgrade.getNumber());
}
return String.join("\\r\\n\\r\\n", lines);
return String.join("\n\n", lines);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ protected String issueBody(Upgrade upgrade, Issue existingUpgrade) {
if (existingUpgrade != null) {
lines.add("Supersedes #" + existingUpgrade.getNumber());
}
return String.join("\\r\\n\\r\\n", lines);
return String.join("\n\n", lines);
}

}

0 comments on commit 52992fb

Please sign in to comment.