Skip to content

Commit

Permalink
Implement Dependabot (#1049)
Browse files Browse the repository at this point in the history
This creates an initial dependabot.yml to update any NuGet package dependencies.

We should see any new PRs weekly, on Wednesday.
  • Loading branch information
BillWagner authored Feb 13, 2024
1 parent 1f6488c commit 3b39ca3
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
version: 2
updates:
- package-ecosystem: "nuget"
directory: "/tools" #tools.sln
schedule:
interval: "weekly"
day: "wednesday"
open-pull-requests-limit: 5
groups:
# Group .NET updates together for solutions.
dotnet:
patterns:
- "*" # Prefer a single PR per solution update.

0 comments on commit 3b39ca3

Please sign in to comment.