From eba4255efa37456b913b4fa19d725a107f078e6b Mon Sep 17 00:00:00 2001 From: Guillaume Smet Date: Wed, 10 Jul 2024 17:11:00 +0200 Subject: [PATCH] Add titles for final step This is more readable. --- .../java/io/quarkus/bot/release/step/AnnounceRelease.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/io/quarkus/bot/release/step/AnnounceRelease.java b/src/main/java/io/quarkus/bot/release/step/AnnounceRelease.java index 7b229d2..024ae89 100644 --- a/src/main/java/io/quarkus/bot/release/step/AnnounceRelease.java +++ b/src/main/java/io/quarkus/bot/release/step/AnnounceRelease.java @@ -39,12 +39,16 @@ public int run(Context context, Commands commands, GitHub quarkusBotGitHub, Rele comment.append(":raised_hands: Some manual steps are required to finalize the release.\n\n"); + comment.append("## Trigger performance testing\n\n"); + comment.append("Connected to the Red Hat VPN, in a clone of https://github.com/quarkusio/quarkus-release, run:\n"); comment.append("```\n"); comment.append("./trigger-performance-testing.sh " + releaseInformation.getVersion() + "\n"); comment.append("```\n"); comment.append("to trigger the performance evaluation testing for this release.\n\n"); + comment.append("## Announce release\n\n"); + if (releaseInformation.isFinal()) { comment.append("Then it is time to announce the release:\n\n"); if (!releaseInformation.isMaintenance()) {