Skip to content

fix invalid schedule in renovate config#83

Merged
sourcehawk merged 1 commit intomainfrom
fix/renovate-config
Mar 27, 2026
Merged

fix invalid schedule in renovate config#83
sourcehawk merged 1 commit intomainfrom
fix/renovate-config

Conversation

@sourcehawk
Copy link
Copy Markdown
Owner

No description provided.

Copilot AI review requested due to automatic review settings March 27, 2026 19:10
@sourcehawk sourcehawk merged commit 6029e77 into main Mar 27, 2026
4 checks passed
@sourcehawk sourcehawk deleted the fix/renovate-config branch March 27, 2026 19:11
Copy link
Copy Markdown

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Updates the Renovate configuration to replace an invalid update schedule with a cron-based schedule, aiming to control when minor/patch dependency update PRs are created.

Changes:

  • Replaces the packageRules[0].schedule value with a cron expression.

{
"matchUpdateTypes": ["minor", "patch"],
"schedule": ["every 2 weeks on Monday"]
"schedule": ["* * 1,15 * *"]
Copy link

Copilot AI Mar 27, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The cron schedule * * 1,15 * * matches every minute on the 1st and 15th of each month (i.e., a 24-hour window), which is likely much broader than the previous intent of “every 2 weeks on Monday”. Consider tightening this to a specific time (e.g., 0 0 1,15 * *) or switching back to Renovate’s human-readable schedule syntax that matches the intended cadence/day-of-week.

Suggested change
"schedule": ["* * 1,15 * *"]
"schedule": ["0 0 1,15 * *"]

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants