chore: ignore major version bumps in dependabot for pip and docker

Dependabot was creating orphaned branches for risky major bumps
(Node 22->25, CUDA 12->13, Pillow 11->12, onnxruntime 1.20->1.25)
without opening PRs. These require manual evaluation, not auto-update.
Aligns pip and docker config with the npm ecosystem which already
ignores major bumps.
This commit is contained in:
SnapOtter
2026-05-01 14:16:32 +08:00
parent fa479dcee4
commit 64a8ab6944
+6
View File
@@ -30,6 +30,9 @@ updates:
interval: "weekly"
day: "monday"
open-pull-requests-limit: 5
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-major"]
# Docker base images
- package-ecosystem: "docker"
@@ -38,6 +41,9 @@ updates:
interval: "weekly"
day: "monday"
open-pull-requests-limit: 3
ignore:
- dependency-name: "*"
update-types: ["version-update:semver-major"]
# GitHub Actions
- package-ecosystem: "github-actions"