From dc74a6c72edd9c046e84878e4632ee670a755598 Mon Sep 17 00:00:00 2001 From: wuyangfan Date: Mon, 25 May 2026 10:42:02 +0800 Subject: [PATCH] chore: configure Dependabot for NuGet and GitHub Actions Add Dependabot version update configuration so dependency updates are proposed automatically for NuGet packages and GitHub Actions workflows. Fixes #692 Co-authored-by: Cursor --- .github/dependabot.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..9bff983f --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,15 @@ +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + - package-ecosystem: nuget + directory: / + schedule: + interval: weekly + open-pull-requests-limit: 10 + + - package-ecosystem: github-actions + directory: / + schedule: + interval: weekly + open-pull-requests-limit: 5