Skip to content

Commit

Permalink
Merge pull request #48 from gsmet/performance-testing
Browse files Browse the repository at this point in the history
Include manual step for performance testing
  • Loading branch information
gsmet authored Jan 16, 2024
2 parents 2dfc5b4 + 3f8480f commit 01c6549
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/main/java/io/quarkus/bot/release/step/AnnounceRelease.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,14 @@ public int run(Context context, Commands commands, ReleaseInformation releaseInf

comment.append(":white_check_mark: " + releaseInformation.getVersion() + " was successfully released.\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");

if (releaseInformation.isFinal()) {
comment.append("Time to write the announcement:\n\n");
comment.append("Then it is time to write the announcement:\n\n");
if (!releaseInformation.isMaintenance()) {
comment.append("* Update the versions in `_data/versions.yaml`\n");
}
Expand Down Expand Up @@ -75,7 +81,7 @@ public int run(Context context, Commands commands, ReleaseInformation releaseInf
}
}
} else {
comment.append("Time to send an email to [[email protected]](mailto:[email protected]):\n\n");
comment.append("Then it is time to send an email to [[email protected]](mailto:[email protected]):\n\n");
comment.append("Subject: `Quarkus " + releaseInformation.getVersion() + " released`\n\n");
comment.append("> Hi,\n"
+ "> \n"
Expand Down

0 comments on commit 01c6549

Please sign in to comment.