fix: explain pending branch automerge checkbox behavior (#10569)

This commit is contained in:
HonkingGoose 2021-06-23 16:40:37 +02:00 committed by GitHub
parent c08d7fa89f
commit c718352614
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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');
} }