From 31b7155ea9926ec41d93d6c52a18d3022bfd128a Mon Sep 17 00:00:00 2001 From: Peter Evans <18365890+peter-evans@users.noreply.github.com> Date: Mon, 6 Oct 2025 17:22:54 +0100 Subject: [PATCH] ci: update dependabot config Changed the update schedule for GitHub Actions and npm from weekly to monthly. Added groups for better organization of updates. --- .github/dependabot.yml | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 26cbd3b..5f6e39c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,19 +3,27 @@ updates: - package-ecosystem: "github-actions" directory: "/" schedule: - interval: "weekly" + interval: "monthly" day: "sunday" labels: - "dependencies" - + groups: + github-actions: + applies-to: version-updates + patterns: + - "*" - package-ecosystem: "npm" directory: "/" schedule: - interval: "weekly" + interval: "monthly" day: "sunday" ignore: - dependency-name: "*" update-types: ["version-update:semver-major"] labels: - "dependencies" - + groups: + npm: + applies-to: version-updates + patterns: + - "*"