From 664ab123c33624416ff0ea7521b223cf68670236 Mon Sep 17 00:00:00 2001 From: nightcityblade Date: Tue, 3 Mar 2026 22:30:36 +0800 Subject: [PATCH] chore: add dependency groups to Dependabot config (#32721) --- .github/dependabot.yml | 26 +++++++++++++++++++------- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 1a57bb0050..78f6eefd0d 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,25 +1,37 @@ version: 2 -multi-ecosystem-groups: - python: - schedule: - interval: "weekly" # or whatever schedule you want - updates: - package-ecosystem: "pip" directory: "/api" open-pull-requests-limit: 2 - patterns: ["*"] schedule: interval: "weekly" + groups: + python-dependencies: + patterns: + - "*" - package-ecosystem: "uv" directory: "/api" open-pull-requests-limit: 2 - patterns: ["*"] schedule: interval: "weekly" + groups: + uv-dependencies: + patterns: + - "*" - package-ecosystem: "npm" directory: "/web" schedule: interval: "weekly" open-pull-requests-limit: 2 + groups: + storybook: + patterns: + - "storybook" + - "@storybook/*" + npm-dependencies: + patterns: + - "*" + exclude-patterns: + - "storybook" + - "@storybook/*"