From 73d0c05d642c40fc1bfe55d3ddd5537cdbc91051 Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Sat, 27 Dec 2025 11:23:34 -0800 Subject: [PATCH] chore: add Dependabot configuration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Configure automated dependency updates: - NuGet packages: monthly, patch updates only for LTS stability - Samples and tests: monthly, all updates allowed - GitHub Actions: quarterly updates 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .github/dependabot.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..2bca695d --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,27 @@ +version: 2 +updates: + # NuGet packages - patch updates only for LTS stability + - package-ecosystem: "nuget" + directory: "/" + schedule: + interval: "monthly" + ignore: + # Only allow patch updates (ignore minor and major) + - dependency-name: "*" + update-types: + - "version-update:semver-major" + - "version-update:semver-minor" + + # Sample and test projects - allow all updates (latest versions) + - package-ecosystem: "nuget" + directories: + - "/docs/samples" + - "/test" + schedule: + interval: "monthly" + + # GitHub Actions - monthly updates + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "quarterly"