Skip to content
Snippets Groups Projects
Unverified Commit c7183526 authored by HonkingGoose's avatar HonkingGoose Committed by GitHub
Browse files

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

parent c08d7fa8
No related branches found
No related tags found
No related merge requests found
...@@ -29,7 +29,7 @@ These updates encountered an error and will be retried. Click a checkbox below t ...@@ -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( ...@@ -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');
} }
......
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