Conversation
Reconfigure PR ResultsThis is a reconfigure PR comment to help you understand and re-configure your renovate bot settings. If this Reconfigure PR were to be merged, we'd expect to see the following outcome: Detected Package Files
Configuration SummaryBased on the default config's presets, Renovate will:
What to ExpectWith your current configuration, Renovate will create 2 Pull Requests: Update dependency uv to v0.10.5
Lock file maintenance
🚸 Branch creation and rebasing will be limited to maximum 1 per hour, so it doesn't swamp any CI resources or overwhelm the project. See docs for |
There was a problem hiding this comment.
Pull request overview
This PR adds scheduling configuration to the Renovate bot to control when dependency updates are processed. The changes limit Renovate runs to weekdays during specified hours to avoid running updates during off-hours or weekends.
Changes:
- Added global schedule to run Renovate on weekdays (Monday-Friday) during hours 0-13
- Added package-specific schedule for the Mise package to run only on Fridays during hours 0-13
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| }, | ||
| postUpdateOptions: ["npmDedupe"], | ||
| rebaseWhen: "behind-base-branch", | ||
| schedule: ["* 0-13 * * 1-5"], // Weekdays, during night and working hours |
There was a problem hiding this comment.
The wildcard * in the minute field causes Renovate to run every minute during hours 0-13, which is likely excessive. This would result in 840 executions per weekday (60 minutes × 14 hours). Consider using a more reasonable interval, such as 0 0-13 * * 1-5 (once per hour) or 0,30 0-13 * * 1-5 (twice per hour).
No description provided.