From 4033f7d69a6b65d405ccf6751fed0118ade4dcc9 Mon Sep 17 00:00:00 2001 From: Philipp Siekmann Date: Tue, 23 Jun 2026 11:47:30 +0200 Subject: [PATCH] chore: add dependabot config for security updates only Disable routine version-update PRs via open-pull-requests-limit: 0 and group security advisories into a single weekly PR. 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 000000000..ed599641e --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,15 @@ +version: 2 +updates: + - package-ecosystem: "npm" + directories: + - "/" + - "/packages/*" + - "/apps/*" + schedule: + interval: "weekly" + # 0 disables version-update PRs; security updates are unaffected + open-pull-requests-limit: 0 + groups: + security: + applies-to: security-updates + patterns: ["*"]