Add NuGet ecosystem to Dependabot configuration#1439
Open
jonathanpeppers wants to merge 1 commit into
Open
Conversation
Configures Dependabot to recursively discover and update NuGet package references across all projects in the repo. Updates run weekly and are batched into a single grouped PR to reduce noise. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Member
Author
|
We'll have to merge to test. |
There was a problem hiding this comment.
Pull request overview
Adds NuGet dependency update automation via Dependabot so the repository’s .NET package references stay current alongside the existing submodule updates.
Changes:
- Add a new Dependabot
nugetupdate configuration at repo root (directory: "/") to discover and update NuGet manifests across the repo. - Configure a weekly cadence with grouped updates (
nuget-dependencies) and an open PR cap of 10.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Keeps NuGet package references across the repo current automatically, so we don't accumulate stale dependencies between manual update passes.
Approach
Adds a
nugetentry to.github/dependabot.ymlalongside the existinggitsubmoduleentry. Withdirectory: "/", Dependabot recursively discovers every*.csproj(and*.props/*.targets) undersrc/,tools/,tests/,samples/, andbuild-tools/, so a single entry covers all ~45 projects in the repo.nuget-dependenciesgroup matching*, so all NuGet bumps land in one PR per cycle instead of flooding the queue.If the grouped PR turns out to be too coarse, we can split into version-update groups (e.g. major vs minor/patch) later.