-
Notifications
You must be signed in to change notification settings - Fork 0
🩹[Patch]: Configure Dependabot and rename Auto-Release to Release-GHRepository #24
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
8f999ec
ad6d520
c50ca73
bf6584c
4347c82
69da2f0
72296cf
c0fb00a
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 |
This file was deleted.
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.
The
cooldownconfiguration option is not a valid Dependabot configuration field according to GitHub's documentation. Dependabot does not support a cooldown mechanism to prevent duplicate PRs within a specified time period. This configuration will likely be ignored or cause validation errors.If the goal is to reduce PR churn while checking daily, consider using the
open-pull-requests-limitoption instead to limit the number of concurrent open PRs, or stick with the weekly schedule. The daily schedule will attempt to open PRs for updates as they become available, which may not achieve the desired 7-day cooldown behavior described in the PR description.