mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
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:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user