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

fix(masterIssue): link to edited PRs

Closes #3259
parent 87cf1350
No related branches found
No related tags found
No related merge requests found
...@@ -96,7 +96,8 @@ async function ensureMasterIssue(config, branches) { ...@@ -96,7 +96,8 @@ async function ensureMasterIssue(config, branches) {
issueBody += '## Edited/Blocked\n\n'; issueBody += '## Edited/Blocked\n\n';
issueBody += `These updates have been manually edited so ${appName} will no longer make changes. To discard all commits and start over, check the box below.\n\n`; issueBody += `These updates have been manually edited so ${appName} will no longer make changes. To discard all commits and start over, check the box below.\n\n`;
for (const branch of prEdited) { for (const branch of prEdited) {
issueBody += getListItem(branch, 'reset'); const pr = await platform.getBranchPr(branch.branchName);
issueBody += getListItem(branch, 'rebase', pr);
} }
issueBody += '\n'; issueBody += '\n';
} }
......
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