Skip to content

Commit 3fb6cfd

Browse files
chore(dependabot): cap open pull requests per update block (#53)
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 Copyright (c) Jonathan D.A. Jewell <j.d.a.jewell@open.ac.uk> --> ## 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 - [ ] `TOPOLOGY.md` updated (if architecture changed) - [ ] `CHANGELOG` or release notes updated - [ ] New dependencies reviewed for license compatibility (PMPL-1.0-or-later / MPL-2.0) - [ ] ABI/FFI changes validated (`src/interface/abi/` and `src/interface/ffi/` 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 b09939c commit 3fb6cfd

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 5 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"
@@ -22,24 +23,28 @@ updates:
2223
ignore:
2324
- dependency-name: "*"
2425
update-types: ["version-update:semver-patch"]
26+
open-pull-requests-limit: 0
2527

2628
# Elixir/Mix
2729
- package-ecosystem: "mix"
2830
directory: "/"
2931
schedule:
3032
interval: "weekly"
33+
open-pull-requests-limit: 3
3134

3235
# Node.js/npm
3336
- package-ecosystem: "npm"
3437
directory: "/"
3538
schedule:
3639
interval: "weekly"
40+
open-pull-requests-limit: 3
3741

3842
# Python/pip
3943
- package-ecosystem: "pip"
4044
directory: "/"
4145
schedule:
4246
interval: "weekly"
47+
open-pull-requests-limit: 3
4348

4449
# Nix flakes
4550
- package-ecosystem: "nix"

0 commit comments

Comments
 (0)