From 99c2f0de317d955e90a6dcda2263138fde6666f8 Mon Sep 17 00:00:00 2001 From: Kai Koenig Date: Thu, 3 Sep 2026 14:43:34 +1200 Subject: [PATCH 1/2] chore(deps): group routine Dependabot updates --- .github/dependabot.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 737d54f4..d4ce82b8 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,6 +6,16 @@ updates: directory: "/" schedule: interval: "monthly" + cooldown: + default-days: 7 + semver-major-days: 30 + groups: + routine-development: + applies-to: "version-updates" + dependency-type: "development" + update-types: + - "minor" + - "patch" commit-message: prefix: "chore" include: "scope" @@ -15,6 +25,17 @@ updates: directory: "/examples/express-sample" schedule: interval: "monthly" + cooldown: + default-days: 7 + semver-major-days: 30 + groups: + routine-express-sample-dependencies: + applies-to: "version-updates" + patterns: + - "*" + update-types: + - "minor" + - "patch" commit-message: prefix: "chore" include: "scope" @@ -28,6 +49,17 @@ updates: directory: "/examples/using-domains" schedule: interval: "monthly" + cooldown: + default-days: 7 + semver-major-days: 30 + groups: + routine-domains-example-dependencies: + applies-to: "version-updates" + patterns: + - "*" + update-types: + - "minor" + - "patch" commit-message: prefix: "chore" include: "scope" From e9f3ad4bc08a38421ca0ce7e3bc22b09c2344cef Mon Sep 17 00:00:00 2001 From: Kai Koenig Date: Thu, 3 Sep 2026 14:45:57 +1200 Subject: [PATCH 2/2] chore(deps): use one cooldown for npm updates --- .github/dependabot.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d4ce82b8..9d4526cf 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,7 +8,6 @@ updates: interval: "monthly" cooldown: default-days: 7 - semver-major-days: 30 groups: routine-development: applies-to: "version-updates" @@ -27,7 +26,6 @@ updates: interval: "monthly" cooldown: default-days: 7 - semver-major-days: 30 groups: routine-express-sample-dependencies: applies-to: "version-updates" @@ -51,7 +49,6 @@ updates: interval: "monthly" cooldown: default-days: 7 - semver-major-days: 30 groups: routine-domains-example-dependencies: applies-to: "version-updates"