From 3cf756e13b2e27203318b78536a9e3292f9e4dd0 Mon Sep 17 00:00:00 2001 From: "Jonathan D.A. Jewell" <6759885+hyperpolymath@users.noreply.github.com> Date: Wed, 9 Sep 2026 00:13:24 +0100 Subject: [PATCH] chore(dependabot): cap open pull requests per update block Adds `open-pull-requests-limit` to Dependabot update blocks that had no cap, following the estate per-ecosystem cap doctrine (task #37). No other line in the file is touched. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_011eQ7hibx92N7fBDtwgReWk --- .github/dependabot.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 2f80405..e41f265 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,6 +8,7 @@ updates: actions: patterns: - "*" + open-pull-requests-limit: 2 - package-ecosystem: "cargo" directory: "/" @@ -16,13 +17,16 @@ updates: ignore: - dependency-name: "*" update-types: ["version-update:semver-patch"] + open-pull-requests-limit: 0 - package-ecosystem: "npm" directory: "/" schedule: interval: "daily" + open-pull-requests-limit: 3 - package-ecosystem: "pip" directory: "/" schedule: interval: "daily" + open-pull-requests-limit: 3