mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 23:16:26 +00:00
fix(dashboard): improve wording checkbox to ignore schedule (#10512)
This commit is contained in:
parent
63cf6a7afd
commit
9dd254ab84
4 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
"
|
||||
|
|
|
@ -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 -->'
|
||||
|
|
|
@ -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');
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue