From da24e2715763cf89bd4004ba6fa66e98bb6a4934 Mon Sep 17 00:00:00 2001 From: steveoh Date: Tue, 29 Jul 2025 15:04:08 -0600 Subject: [PATCH] ci: add cooldown settings to dependabot configuration --- .github/dependabot.yml | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 7a73159..ab8b8b5 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,16 +6,26 @@ updates: interval: monthly groups: safe-dependencies: - update-types: ['minor', 'patch'] + update-types: + - minor + - patch major-dependencies: - update-types: ['major'] + update-types: + - major commit-message: prefix: deps prefix-development: deps(dev) + cooldown: + default-days: 10 + semver-major-days: 60 + semver-minor-days: 14 + semver-patch-days: 7 - package-ecosystem: github-actions directory: / schedule: interval: monthly groups: ci-dependencies: - dependency-type: 'production' + dependency-type: production + cooldown: + default-days: 10