fix(dashboard): improve wording checkbox to ignore schedule (#10512)

This commit is contained in:
HonkingGoose 2021-06-20 17:44:03 +02:00 committed by GitHub
parent 63cf6a7afd
commit 9dd254ab84
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View file

@ -9,7 +9,7 @@ These branches will be created by Renovate only once you click their checkbox be
## Awaiting Schedule
These updates are awaiting their schedule. Click on a checkbox to ignore the schedule.
These updates are awaiting their schedule. Click on a checkbox to get an update now.
- [ ] <!-- unschedule-branch=branchName3 -->pr3
- [ ] <!-- unschedule-branch=branchName4 -->pr4

View file

@ -54,7 +54,7 @@ These branches will be created by Renovate only once you click their checkbox be
## Awaiting Schedule
These updates are awaiting their schedule. Click on a checkbox to ignore the schedule.
These updates are awaiting their schedule. Click on a checkbox to get an update now.
- [x] <!-- unschedule-branch=branchName3 -->pr3
"

View file

@ -508,7 +508,7 @@ describe(getName(), () => {
## Awaiting Schedule
These updates are awaiting their schedule. Click on a checkbox to ignore the schedule.
These updates are awaiting their schedule. Click on a checkbox to get an update now.
- [x] <!-- unschedule-branch=branchName3 -->pr3
- [x] <!-- rebase-all-open-prs -->'

View file

@ -160,7 +160,7 @@ export async function ensureDependencyDashboard(
if (awaitingSchedule.length) {
issueBody += '## Awaiting Schedule\n\n';
issueBody +=
'These updates are awaiting their schedule. Click on a checkbox to ignore the schedule.\n';
'These updates are awaiting their schedule. Click on a checkbox to get an update now.\n';
for (const branch of awaitingSchedule) {
issueBody += getListItem(branch, 'unschedule');
}