From c39b1233600ed07bc636e5dff67aaa3e5844a868 Mon Sep 17 00:00:00 2001 From: Jamie Magee Date: Thu, 27 Aug 2026 16:17:50 -0700 Subject: [PATCH 1/2] Configure monthly Dependabot updates Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/dependabot.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000000..7c2bd9ad01 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,26 @@ +version: 2 +updates: + - package-ecosystem: "nuget" + directories: + - "/" + - "/dev/MRTCore/mrt" + - "/dev/Templates/VSIX" + - "/dev/Templates/Source/ProjectTemplates/Desktop/CSharp/*" + - "/dev/Templates/Source/ProjectTemplates/Desktop/CSharp/PackagedApp/BlankApp" + - "/test/StaticValidationTests" + - "/tools/ProjectTemplates/dev.cs.dll.projection" + schedule: + interval: "monthly" + groups: + minor-and-patch: + patterns: ["*"] + update-types: ["minor", "patch"] + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "monthly" + groups: + minor-and-patch: + patterns: ["*"] + update-types: ["minor", "patch"] From 9c92a9bfb32ab4281bcb218a9468863277fdc309 Mon Sep 17 00:00:00 2001 From: Jamie Magee Date: Thu, 27 Aug 2026 16:33:52 -0700 Subject: [PATCH 2/2] Limit NuGet paths to updateable manifests Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/dependabot.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 7c2bd9ad01..6c7a378546 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,10 +3,10 @@ updates: - package-ecosystem: "nuget" directories: - "/" - - "/dev/MRTCore/mrt" + - "/dev/MRTCore/mrt/Microsoft.Windows.ApplicationModel.Resources/UnpackagedTests" + - "/dev/MRTCore/mrt/Microsoft.Windows.ApplicationModel.Resources/projection" + - "/dev/MRTCore/mrt/Microsoft.Windows.ApplicationModel.Resources/unittests" - "/dev/Templates/VSIX" - - "/dev/Templates/Source/ProjectTemplates/Desktop/CSharp/*" - - "/dev/Templates/Source/ProjectTemplates/Desktop/CSharp/PackagedApp/BlankApp" - "/test/StaticValidationTests" - "/tools/ProjectTemplates/dev.cs.dll.projection" schedule: