Skip to content

Commit ea6a384

Browse files
authored
chore: restrict dependabot to security updates only (#1395)
## Summary - Sets `open-pull-requests-limit: 0` on both pip and github-actions ecosystems, which disables routine version-bump PRs while still allowing security update PRs (they bypass this limit) - Changes pip scanning interval from daily to weekly since it only matters for security scanning cadence now ## Context Closed 9 open dependabot PRs that were all routine version bumps with no security motivation. This config change prevents future noise.
1 parent 40bc0d6 commit ea6a384

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/dependabot.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
version: 2
22
updates:
3-
# Python dependencies
3+
# Python dependencies — security updates only
44
- package-ecosystem: "pip"
55
directory: "/"
66
schedule:
7-
interval: "daily"
7+
interval: "weekly"
8+
open-pull-requests-limit: 0
89
rebase-strategy: "disabled"
910

10-
# GitHub Actions — auto-update SHA pins
11+
# GitHub Actions — security updates only
1112
- package-ecosystem: "github-actions"
1213
directory: "/"
1314
schedule:
1415
interval: "weekly"
16+
open-pull-requests-limit: 0
1517
rebase-strategy: "disabled"

0 commit comments

Comments
 (0)