-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #48 from gsmet/performance-testing
Include manual step for performance testing
- Loading branch information
Showing
1 changed file
with
8 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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"); | ||
} | ||
|
@@ -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" | ||
|