Skip to content

Commit ed72872

Browse files
authored
Add Dependabot configuration for .NET SDK updates (#95)
This PR adds Dependabot configuration to automatically manage .NET SDK version updates in global.json. This configuration will: - Monitor the global.json file for .NET SDK version updates - Create pull requests when new SDK versions are available - Help keep the project secure with the latest SDK patches For more information, see: https://devblogs.microsoft.com/dotnet/using-dependabot-to-manage-dotnet-sdk-updates/
1 parent 2105aac commit ed72872

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/dependabot.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,14 @@ updates:
1111
directory: "/"
1212
schedule:
1313
interval: "weekly"
14-
day: "sunday"
14+
day: "sunday"
15+
- package-ecosystem: dotnet-sdk
16+
directory: /
17+
schedule:
18+
interval: weekly
19+
day: wednesday
20+
ignore:
21+
- dependency-name: '*'
22+
update-types:
23+
- version-update:semver-major
24+
- version-update:semver-minor

0 commit comments

Comments
 (0)