Skip to content

Commit fd09e58

Browse files
Add Dependabot config with 5-day cooldown
Mirrors the cli/cli Dependabot configuration: - gomod, daily, ignore major-version updates - github-actions, daily Adds a 5-day `cooldown.default-days` to both ecosystems so newly released versions have time to bake before Dependabot opens a PR for them. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent fe4619f commit fd09e58

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: gomod
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
cooldown:
8+
default-days: 5
9+
ignore:
10+
- dependency-name: "*"
11+
update-types:
12+
- version-update:semver-major
13+
- package-ecosystem: "github-actions"
14+
directory: "/"
15+
schedule:
16+
interval: "daily"
17+
cooldown:
18+
default-days: 5

0 commit comments

Comments
 (0)