diff --git a/lib/workers/repository/master-issue.js b/lib/workers/repository/master-issue.js index f52cfafd73e17ca691c0b56ef78cbb4d8458dfd7..27e9f7eaf16df806a6f2aba6380b2a2122735f26 100644 --- a/lib/workers/repository/master-issue.js +++ b/lib/workers/repository/master-issue.js @@ -87,6 +87,16 @@ async function ensureMasterIssue(config, branches) { } issueBody += '\n'; } + const prEdited = branches.filter(branch => branch.res === 'pr-edited'); + if (prEdited.length) { + issueBody += '## Edited/Blocked\n\n'; + issueBody += + 'These updates have been manually edited so Renovate will no longer make changes. To discard all commits and start over, check the box below.\n\n'; + for (const branch of prEdited) { + issueBody += getListItem(branch, 'reset'); + } + issueBody += '\n'; + } const otherRes = [ 'needs-approval', 'not-scheduled', @@ -94,6 +104,7 @@ async function ensureMasterIssue(config, branches) { 'already-existed', 'error', 'automerged', + 'pr-edited', ]; const inProgress = branches.filter(branch => !otherRes.includes(branch.res)); if (inProgress.length) {