mirror of
https://github.com/kastenhq/kubestr.git
synced 2024-12-14 11:57:56 +00:00
Avoids unnecessarily auto-creating PRs for k8s dependencies (#140)
Co-authored-by: Julio Lopez <1953782+julio-lopez@users.noreply.github.com>
This commit is contained in:
parent
187c53d8ef
commit
092605f2f6
1 changed files with 8 additions and 0 deletions
8
.github/dependabot.yaml
vendored
8
.github/dependabot.yaml
vendored
|
@ -1,7 +1,15 @@
|
|||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: gomod
|
||||
commit-message:
|
||||
prefix: "deps(go):"
|
||||
directory: "/"
|
||||
ignore:
|
||||
# Avoids unnecessarily auto-creating PRs for k8s dependencies, as these
|
||||
# will be closed since k8s dependencies need to be updated all at once
|
||||
# starting with kanister and go through additional validation.
|
||||
- dependency-name: "k8s.io/*"
|
||||
- dependency-name: "sigs.k8s.io/*"
|
||||
open-pull-requests-limit: 2
|
||||
schedule:
|
||||
interval: daily
|
||||
|
|
Loading…
Reference in a new issue