From d1b60499e9892314b8fcfbfe05db922ea0bcc56b Mon Sep 17 00:00:00 2001 From: mghabin Date: Fri, 24 Apr 2026 21:06:30 +0300 Subject: [PATCH] Add Dependabot config for nuget + github-actions Grouped updates so PR noise stays manageable: identity stack, AspNetCore / M.Extensions, OpenTelemetry, Azure SDK, analyzers, and test deps each ship as a single weekly PR. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/dependabot.yml | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..f6aa717 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,42 @@ +version: 2 +updates: + - package-ecosystem: nuget + directory: "/" + schedule: + interval: weekly + open-pull-requests-limit: 10 + groups: + microsoft-identity: + patterns: + - "Microsoft.Identity.*" + - "Microsoft.IdentityModel.*" + aspnetcore: + patterns: + - "Microsoft.AspNetCore.*" + - "Microsoft.Extensions.*" + opentelemetry: + patterns: + - "OpenTelemetry.*" + azure: + patterns: + - "Azure.*" + analyzers: + patterns: + - "Meziantou.Analyzer" + - "SonarAnalyzer.*" + test: + patterns: + - "xunit*" + - "Microsoft.NET.Test.Sdk" + - "NSubstitute" + - "Shouldly" + - "Microsoft.AspNetCore.Mvc.Testing" + + - package-ecosystem: github-actions + directory: "/" + schedule: + interval: weekly + groups: + actions: + patterns: + - "*"