Conversation
There was a problem hiding this comment.
Pull request overview
This PR updates the repository’s Dependabot configuration to reduce the frequency of dependency update pull requests by introducing a cooldown window for Go modules and GitHub Actions updates.
Changes:
- Added a
cooldownblock withdefault-days: 7to thegomodupdate configuration. - Added a
cooldownblock withdefault-days: 7to thegithub-actionsupdate configuration.
| cooldown: | ||
| default-days: 7 |
There was a problem hiding this comment.
cooldown / default-days is not a recognized key in the Dependabot v2 configuration schema (unknown keys can cause Dependabot to reject the whole config and stop creating PRs). If the intent is to reduce PR frequency, consider switching schedule.interval to weekly (optionally with day, time, timezone) or using groups/ignore rules instead of cooldown.
| cooldown: | ||
| default-days: 7 |
There was a problem hiding this comment.
Same as above: cooldown / default-days is not part of the Dependabot v2 config schema and may prevent Dependabot from processing this file. Prefer adjusting schedule.interval (e.g., weekly) and/or using groups/ignore to control PR volume.
This pull request makes a small configuration change to the
.github/dependabot.ymlfile, introducing a cooldown period for Dependabot updates.cooldownsetting withdefault-days: 7to both thegomodandghaupdate configurations, which will limit the frequency of new pull requests for these dependencies. [1] [2]