-
Notifications
You must be signed in to change notification settings - Fork 9
Predictable Dependabot #292
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,9 +3,11 @@ updates: | |
| - package-ecosystem: "cargo" | ||
| directory: "/" | ||
| schedule: | ||
| interval: "monthly" | ||
| interval: "cron" | ||
| cronjob: "0 5 2 * *" # Second day of each month at 05:00 UTC | ||
|
|
||
| - package-ecosystem: "github-actions" | ||
| directory: "/" | ||
| schedule: | ||
| interval: "monthly" | ||
| interval: "cron" | ||
| cronjob: "0 5 2 * *" # Second day of each month at 05:00 UTC | ||
|
Comment on lines
+12
to
+13
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The field name should be
croninstead ofcronjobfor Dependabot cron schedules. Additionally, the cron expression0 5 2 * *runs on the second day of each month at 05:00 UTC, but the PR description indicates it should run on the first Sunday of the month. Dependabot doesn't support advanced cron expressions for day-of-week scheduling. If you need to run on the first Sunday, you would need to use a different approach or accept that Dependabot's scheduling is limited to specific days or weekly intervals.See below for a potential fix: