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"
|
interval: "weekly"
|
||||||
day: "monday"
|
day: "monday"
|
||||||
open-pull-requests-limit: 5
|
open-pull-requests-limit: 5
|
||||||
|
ignore:
|
||||||
|
- dependency-name: "*"
|
||||||
|
update-types: ["version-update:semver-major"]
|
||||||
|
|
||||||
# Docker base images
|
# Docker base images
|
||||||
- package-ecosystem: "docker"
|
- package-ecosystem: "docker"
|
||||||
@@ -38,6 +41,9 @@ updates:
|
|||||||
interval: "weekly"
|
interval: "weekly"
|
||||||
day: "monday"
|
day: "monday"
|
||||||
open-pull-requests-limit: 3
|
open-pull-requests-limit: 3
|
||||||
|
ignore:
|
||||||
|
- dependency-name: "*"
|
||||||
|
update-types: ["version-update:semver-major"]
|
||||||
|
|
||||||
# GitHub Actions
|
# GitHub Actions
|
||||||
- package-ecosystem: "github-actions"
|
- package-ecosystem: "github-actions"
|
||||||
|
|||||||
Reference in New Issue
Block a user