From 807c64c8ebf45e97852e4e37df10bde3eb355234 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=A8=E3=83=AA=E3=82=B9?= Date: Mon, 10 Aug 2026 22:35:42 +0900 Subject: [PATCH] chore(dependabot): update config (#1990) - GH Action Interval changes from daily to weekly - NPM Interval remains as weekly - NPM PRs - Group patch releases - Increase cooldown from 4 to 5 days - Group minor releases - Increase cooldown from 4 to 5 days - Major releases will remain as single PR for each package - Increase cooldown from 4 to 14 days - GH Actions PR - Group patch and minors - Increase cooldown from 4 to 5 days - Major releases will remain as single PR for each package - Increase cooldown from 4 to 14 days --- .github/dependabot.yml | 29 +++++++++++++++++++++++++---- 1 file changed, 25 insertions(+), 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 8c9634c8..dcafbc8d 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -16,17 +16,38 @@ # under the License. version: 2 + updates: - package-ecosystem: "github-actions" directory: "/" cooldown: - default-days: 4 + default-days: 5 + semver-major-days: 14 schedule: - interval: "daily" # Every weekday, Monday to Friday + interval: "weekly" # Every Monday + groups: + gh-actions-patch-minor: + patterns: + - "*" + update-types: + - "patch" + - "minor" - package-ecosystem: "npm" directory: "/" cooldown: - default-days: 4 + default-days: 5 + semver-major-days: 14 schedule: - interval: "weekly" # By default on a Monday + interval: "weekly" # Every Monday + groups: + npm-patch: + patterns: + - "*" + update-types: + - "patch" + npm-minor: + patterns: + - "*" + update-types: + - "minor"