Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(config): warn about spaces in schedule #29121

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/usage/configuration-options.md
Original file line number Diff line number Diff line change
Expand Up @@ -3737,6 +3737,12 @@ every 3 months on the first day of the month
* 0 2 * *
```

<!-- prettier-ignore -->
!!! warning
You _must_ keep the number and the `am`/`pm` part _together_!
Correct: `before 5am`, or `before 5:00am`.
Wrong: `before 5 am`, or `before 5:00 am`.

<!-- prettier-ignore -->
!!! warning
For Cron schedules, you _must_ use the `*` wildcard for the minutes value, as Renovate doesn't support minute granularity.
Expand Down