From 951069e649e6e40d43f25a68e5a90e6f55ab24c1 Mon Sep 17 00:00:00 2001 From: Caleb Xu Date: Wed, 24 Jun 2026 14:47:52 -0400 Subject: [PATCH] ci: separate test deps from prod in dependabot config Signed-off-by: Caleb Xu --- .github/dependabot.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index dd38574..9482196 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,10 +7,14 @@ updates: schedule: interval: "weekly" groups: - dev-dependencies: - dependency-type: "development" + test-dependencies: + patterns: + - "github.com/onsi/ginkgo*" + - "github.com/onsi/gomega*" prod-dependencies: - dependency-type: "production" + exclude-patterns: + - "github.com/onsi/ginkgo*" + - "github.com/onsi/gomega*" cooldown: default-days: 7 - package-ecosystem: github-actions