We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ccf259 commit 251b71aCopy full SHA for 251b71a
bots/pr/src/main/java/org/openjdk/skara/bots/pr/CheckRun.java
@@ -240,7 +240,8 @@ private List<String> allowedTargetBranches() {
240
private List<String> botSpecificChecks(boolean iscleanBackport) {
241
var ret = new ArrayList<String>();
242
243
- if (bodyWithoutStatus().isBlank() && !iscleanBackport) {
+ var bodyWithoutStatus = bodyWithoutStatus();
244
+ if ((bodyWithoutStatus.isBlank() || bodyWithoutStatus.equals(EMPTY_PR_BODY_MARKER)) && !iscleanBackport) {
245
ret.add(MSG_EMPTY_BODY);
246
}
247
1 commit comments
openjdk-notifier[bot] commentedon Mar 26, 2025
Review
Issues