-
Notifications
You must be signed in to change notification settings - Fork 14
Predictable Dependabot #92
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
base: main
Are you sure you want to change the base?
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 |
|---|---|---|
|
|
@@ -4,9 +4,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
+13
to
+14
|
||
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
cronjobis not valid for Dependabot configuration. Additionally, Dependabot doesn't supportinterval: "cron". For monthly schedules, useinterval: "monthly"withdayandtimefields. To run on the first Sunday of the month at 05:00 UTC, the correct syntax would be:Note that this will run on the first occurrence of the specified day in the month.
See below for a potential fix: