Skip to content
Open
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
34 changes: 34 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Dependabot version updates.
# Security updates are enabled repo-wide and are not controlled by this file.
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
#
# Monthly, not weekly: the C# stack is on its way out (Webservice EOL end of
# August 2026), so this is here to catch something that actually matters before
# then — not to generate a weekly PR nobody will merge.

version: 2
updates:
- package-ecosystem: "nuget"
directory: "/"
schedule:
interval: "monthly"
open-pull-requests-limit: 3
# Majors stay ungrouped — they get their own PR and a real review.
# (dependency-type grouping is npm-only, so this groups by pattern.)
groups:
minor-and-patch:
patterns: ["*"]
update-types: ["minor", "patch"]

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
groups:
actions:
patterns: ["*"]

- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "monthly"
Loading