Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
renovate
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GitHub Mirror
Renovate Bot
renovate
Commits
8f7a9e65
Commit
8f7a9e65
authored
6 years ago
by
Rhys Arkins
Browse files
Options
Downloads
Patches
Plain Diff
fix: escape master issue validation messages
Prevents auto @‘ing Closes #2870
parent
e97ea91a
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/workers/repository/error-config.js
+1
-1
1 addition, 1 deletion
lib/workers/repository/error-config.js
with
1 addition
and
1 deletion
lib/workers/repository/error-config.js
+
1
−
1
View file @
8f7a9e65
...
...
@@ -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
'
))
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment