From 580f5be0069d2f52ea8782d52feec32fd0908994 Mon Sep 17 00:00:00 2001 From: Jon Galloway Date: Wed, 17 Jun 2026 19:28:30 -0700 Subject: [PATCH] chore: update dependabot configuration to monitor multiple NuGet directories and add GitHub Actions group --- .github/dependabot.yml | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 48b8d7e..91d2981 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,12 +3,24 @@ version: 2 updates: - # Monitor NuGet dependencies in the DotNetMcp project + # Monitor NuGet dependencies in the main and test projects - package-ecosystem: "nuget" - directory: "/DotNetMcp" + directories: + - "/DotNetMcp" + - "/DotNetMcp.Tests" schedule: interval: "weekly" day: "monday" + groups: + microsoft-dotnet-dependencies: + patterns: + - "Microsoft.*" + mcp-sdk-dependencies: + patterns: + - "ModelContextProtocol" + test-dependencies: + patterns: + - "xunit.*" open-pull-requests-limit: 10 labels: - "dependencies" @@ -16,13 +28,17 @@ updates: commit-message: prefix: "deps" include: "scope" - + # Monitor GitHub Actions dependencies - package-ecosystem: "github-actions" directory: "/" schedule: interval: "weekly" day: "monday" + groups: + github-actions: + patterns: + - "*" open-pull-requests-limit: 5 labels: - "dependencies"