Skip to content

Commit

Permalink
Merge pull request #33 from gsmet/add-branch
Browse files Browse the repository at this point in the history
Add branch information when approving core release
  • Loading branch information
gsmet authored Dec 19, 2023
2 parents 284ac1c + b2fba39 commit 75314b6
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ public boolean shouldPause(Context context, Commands commands, ReleaseInformatio
StringBuilder comment = new StringBuilder();
comment.append("We are going to release the following release:\n\n");
comment.append("- Quarkus `").append(releaseInformation.getVersion()).append("`\n");
comment.append("- with Java `").append(jdks.getJdkVersion(releaseInformation.getBranch())).append("`\n");
comment.append("- On branch `").append(releaseInformation.getBranch()).append("`\n");
comment.append("- With Java `").append(jdks.getJdkVersion(releaseInformation.getBranch())).append("`\n");
if (Files.exists(Path.of("work", "maintenance"))) {
comment.append("- This is a `maintenance` release.\n");
}
Expand Down

0 comments on commit 75314b6

Please sign in to comment.