mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 23:16:26 +00:00
fix: explain pending branch automerge checkbox behavior (#10569)
This commit is contained in:
parent
c08d7fa89f
commit
c718352614
2 changed files with 2 additions and 2 deletions
|
@ -29,7 +29,7 @@ These updates encountered an error and will be retried. Click a checkbox below t
|
||||||
|
|
||||||
## Pending Branch Automerge
|
## Pending Branch Automerge
|
||||||
|
|
||||||
These updates await pending status checks before automerging.
|
These updates await pending status checks before automerging. Click on a checkbox to abort the branch automerge, and create a PR instead.
|
||||||
|
|
||||||
- [ ] <!-- approvePr-branch=branchName9 -->pr9
|
- [ ] <!-- approvePr-branch=branchName9 -->pr9
|
||||||
|
|
||||||
|
|
|
@ -232,7 +232,7 @@ export async function ensureDependencyDashboard(
|
||||||
);
|
);
|
||||||
if (prPendingBranchAutomerge.length) {
|
if (prPendingBranchAutomerge.length) {
|
||||||
issueBody += '## Pending Branch Automerge\n\n';
|
issueBody += '## Pending Branch Automerge\n\n';
|
||||||
issueBody += `These updates await pending status checks before automerging.\n\n`;
|
issueBody += `These updates await pending status checks before automerging. Click on a checkbox to abort the branch automerge, and create a PR instead.\n\n`;
|
||||||
for (const branch of prPendingBranchAutomerge) {
|
for (const branch of prPendingBranchAutomerge) {
|
||||||
issueBody += getListItem(branch, 'approvePr');
|
issueBody += getListItem(branch, 'approvePr');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue