From 520ae520963ec1da5cfded884ad04339ec121327 Mon Sep 17 00:00:00 2001 From: Yousif Salah Date: Thu, 23 Jul 2026 03:43:14 +0300 Subject: [PATCH] Configure Dependabot for weekly dependency updates (#6) --- .github/dependabot.yml | 17 +++++++++++++++++ AGENTS.md | 1 + 2 files changed, 18 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..eeb2ddad --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,17 @@ +version: 2 +updates: + # Monitor NuGet packages (Directory.Packages.props) + - package-ecosystem: "nuget" + directory: "/" + schedule: + interval: "weekly" + groups: + nuget-dependencies: + patterns: + - "*" + + # Monitor .NET SDK version (global.json) + - package-ecosystem: "dotnet-sdk" + directory: "/" + schedule: + interval: "weekly" diff --git a/AGENTS.md b/AGENTS.md index bd04f880..d3d8dc23 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -27,6 +27,7 @@ Originally NUKE by [matkoch](https://github.com/matkoch); under new maintenance - Central package versions in `Directory.Packages.props` — never add a `Version=` to an individual `PackageReference`. - xUnit + FluentAssertions + Verify.Xunit for tests. - Solution file is `fallout.slnx` (new XML solution format, not `.sln`). +- Dependency updates: Handled by Dependabot (weekly grouped PRs). ## Common commands