Skip to content

Commit ab63174

Browse files
chore(dependabot): cap open pull requests per update block (#58)
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. Claude-Session: https://claude.ai/code/session_011eQ7hibx92N7fBDtwgReWk <!-- SPDX-License-Identifier: CC-BY-SA-4.0 --> ## Summary <!-- Briefly describe what this PR does and why. Link to related issues with "Closes #N". --> ## Changes <!-- List the key changes introduced by this PR. --> - ## RSR Quality Checklist <!-- Check all that apply. PRs that fail required checks will not be merged. --> ### Required - [ ] Tests pass (`just test` or equivalent) - [ ] Code is formatted (`just fmt` or equivalent) - [ ] Linter is clean (no new warnings or errors) - [ ] No banned language patterns (no TypeScript, no npm/bun, no Go/Python) - [ ] No `unsafe` blocks without `// SAFETY:` comments - [ ] No banned functions (`believe_me`, `unsafeCoerce`, `Obj.magic`, `Admitted`, `sorry`) - [ ] SPDX license headers present on all new/modified source files - [ ] No secrets, credentials, or `.env` files included ### As Applicable - [ ] `.machine_readable/STATE.a2ml` updated (if project state changed) - [ ] `.machine_readable/ECOSYSTEM.a2ml` updated (if integrations changed) - [ ] `.machine_readable/META.a2ml` updated (if architectural decisions changed) - [ ] Documentation updated for user-facing changes - [ ] `docs/TOPOLOGY.md` updated (if architecture changed) - [ ] `CHANGELOG` or release notes updated - [ ] New dependencies reviewed for license compatibility (MPL-2.0 / MPL-2.0) - [ ] ABI/FFI changes validated (`src/abi/` and `ffi/zig/` consistent) ## Testing <!-- Describe how you tested these changes. --> ## Screenshots <!-- If applicable, add screenshots or terminal output demonstrating the change. --> Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
1 parent 764df24 commit ab63174

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ updates:
1313
actions:
1414
patterns:
1515
- "*"
16+
open-pull-requests-limit: 2
1617

1718
# Rust/Cargo
1819
- package-ecosystem: "cargo"
@@ -31,18 +32,21 @@ updates:
3132
directory: "/"
3233
schedule:
3334
interval: "weekly"
35+
open-pull-requests-limit: 3
3436

3537
# Node.js/npm
3638
- package-ecosystem: "npm"
3739
directory: "/"
3840
schedule:
3941
interval: "weekly"
42+
open-pull-requests-limit: 3
4043

4144
# Python/pip
4245
- package-ecosystem: "pip"
4346
directory: "/"
4447
schedule:
4548
interval: "weekly"
49+
open-pull-requests-limit: 3
4650

4751
# Nix flakes
4852
- package-ecosystem: "nix"

0 commit comments

Comments
 (0)