Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
version: 2
updates:
# NuGet packages - patch updates only for LTS stability
- package-ecosystem: "nuget"
directory: "/"
schedule:
interval: "monthly"
ignore:
# Only allow patch updates (ignore minor and major)
- dependency-name: "*"
update-types:
- "version-update:semver-major"
- "version-update:semver-minor"

# Sample and test projects - allow all updates (latest versions)
- package-ecosystem: "nuget"
directories:
- "/docs/samples"
- "/test"
schedule:
interval: "monthly"

# GitHub Actions - monthly updates
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "quarterly"
Loading