-
Notifications
You must be signed in to change notification settings - Fork 0
🩹[Patch]: Configure Dependabot for daily schedule with 7-day cooldown #9
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 | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -11,4 +11,6 @@ updates: | |||||||
| - dependencies | ||||||||
| - github-actions | ||||||||
| schedule: | ||||||||
| interval: weekly | ||||||||
| interval: daily | ||||||||
| cooldown: | ||||||||
| default-days: 7 | ||||||||
|
Comment on lines
+15
to
+16
|
||||||||
| cooldown: | |
| default-days: 7 | |
| open-pull-requests-limit: 5 |
Copilot
AI
Jan 22, 2026
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 PR description states only that Dependabot configuration is being updated, but this PR also includes updates to GitHub Actions versions (actions/checkout@v6.0.2, super-linter/super-linter@v8.3.2, PSModule/Auto-Release@v1.9.5) and deletes the .github/release.yml file. The PR description should be updated to accurately reflect all changes being made, or these additional changes should be in a separate PR if they are unrelated to the Dependabot configuration update.
This file was deleted.
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.
Changing the Dependabot schedule from weekly to daily will significantly increase the frequency of dependency update PRs. Without the cooldown mechanism (which is not a valid configuration option), this could result in daily PRs for GitHub Actions updates. Consider whether this increased frequency aligns with your maintenance capacity. If you want more frequent checks but controlled PR creation, consider using
open-pull-requests-limitto cap the number of concurrent update PRs Dependabot can create.