diff --git a/lib/workers/branch/index.js b/lib/workers/branch/index.js index e8f48fb67b6a05e885baf749199027996373d169..548bef9a42c570acbd0d34f52e2e2b986476d409 100644 --- a/lib/workers/branch/index.js +++ b/lib/workers/branch/index.js @@ -99,9 +99,10 @@ async function processBranch(branchConfig, packageFiles) { const subject = 'PR has been edited'; logger.info(subject); let content = - 'As this PR has been edited, Renovate will stop updating it in order to not cause any conflicts or other problems.'; - content += - ' If you wish to abandon your edits and have Renovate recreate this PR then you should rename this PR and then close it.'; + ':construction_worker: This PR has received other commits, so Renovate will stop updating it to avoid conflicts or other problems.'; + content += ` If you wish to abandon your changes and have Renovate start over then you can add the label \`${ + config.rebaseLabel + }\` to this PR and Renovate will reset/recreate it.`; await platform.ensureComment(branchPr.number, subject, content); return 'pr-edited'; }