Skip to content
Snippets Groups Projects
Commit 8f7a9e65 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

fix: escape master issue validation messages

Prevents auto @‘ing

Closes #2870
parent e97ea91a
No related merge requests found
......@@ -10,7 +10,7 @@ async function raiseConfigWarningIssue(config, error) {
}
body += `Error type: ${error.validationError}\n`;
if (error.validationMessage) {
body += `Message: ${error.validationMessage}\n`;
body += `Message: \`${error.validationMessage}\`\n`;
}
const pr = await platform.getBranchPr('renovate/configure');
if (pr && pr.state && pr.state.startsWith('open')) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment