Skip to content

Commit 52a260e

Browse files
ci(dependabot): restore cargo PR limit so security PRs flow (#36)
Propagates rsr-template-repo#37 fix. `open-pull-requests-limit: 0` on the cargo block was empirically suppressing Dependabot **security** PRs estate-wide (not just version updates as the previous comment claimed). Restoring to `10` with grouped minor/patch updates to keep noise contained while letting security advisories flow.
1 parent d35d0c7 commit 52a260e

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

.github/dependabot.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,19 @@ updates:
1010
# `ignore: "*" patch` rule also silenced security PRs under GitHub\'s
1111
# current Dependabot behaviour. See rsr-template-repo commit 78b050e
1212
# and 007-lang/audits/audit-dependabot-automation-gap-2026-04-17.md.
13-
open-pull-requests-limit: 0
13+
open-pull-requests-limit: 10
14+
groups:
15+
cargo:
16+
patterns:
17+
- "*"
18+
update-types:
19+
- "minor"
20+
- "patch"
1421
- package-ecosystem: "github-actions"
1522
directory: "/"
1623
schedule:
1724
interval: "weekly"
1825
groups:
1926
actions:
2027
patterns:
21-
- "*"
28+
- "*"

0 commit comments

Comments
 (0)