From 18f4aced3507fb55ad60f5d434f3596a09f7471e Mon Sep 17 00:00:00 2001 From: Effy Elden Date: Thu, 17 Dec 2020 14:09:38 +1100 Subject: [PATCH] Fix misleading validation message --- lib/RallyValidate.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/RallyValidate.js b/lib/RallyValidate.js index 1463dab..325c745 100644 --- a/lib/RallyValidate.js +++ b/lib/RallyValidate.js @@ -357,7 +357,7 @@ class RallyValidate { message += `| ${artifact.key} | \`${artifact.status}\` | \`${artifact.projectName}\` | ${artifact.statusIcon} \`${artifact.validState}\` |\n` }) } else { - message += '\n:heavy_exclamation_mark: No valid artifacts were found in the pull request body' + message += '\n:heavy_exclamation_mark: No valid artifacts were found in the pull request title' isSuccess = false } return { message, isSuccess }