From a8fba5dfb15466e9a79c18c56952748e78dc30cf Mon Sep 17 00:00:00 2001 From: Paul Carleton Date: Mon, 5 Jan 2026 17:40:31 +0000 Subject: [PATCH] Change dependabot to monthly grouped updates - Switch from weekly to monthly schedule - Group all npm dependencies into single PR - Group all GitHub actions into single PR - Add explicit config for examples/servers/typescript directory - Remove cooldown config (less relevant with monthly schedule) --- .github/dependabot.yml | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index a972625..9d1dc11 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,13 +4,26 @@ updates: - package-ecosystem: npm directory: / schedule: - interval: weekly - cooldown: - default-days: 7 + interval: monthly + groups: + all-dependencies: + patterns: + - '*' + + - package-ecosystem: npm + directory: /examples/servers/typescript + schedule: + interval: monthly + groups: + all-dependencies: + patterns: + - '*' - package-ecosystem: github-actions directory: / schedule: - interval: weekly - cooldown: - default-days: 7 + interval: monthly + groups: + all-actions: + patterns: + - '*'