This repository has been archived by the owner on Oct 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dependabot.yaml to disable version checks correctly
Looks like the current way of disabling version updates is no longer valid. Update the configuration to achieve the same effect. Signed-off-by: Vui Lam <vui@vmware.com>
- Loading branch information
Showing
1 changed file
with
66 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,69 @@ | ||
# Dependabot config for go mod version upgrades | ||
# | ||
# TODO(vuil): | ||
# All version updates being disabled with | ||
# 'open-pull-requests-limit: 0' | ||
# restoring of version updates being tracked in | ||
# https://github.com/vmware-tanzu/tanzu-framework/issues/4148 | ||
|
||
# (vuil) temporarily disable version upgrades until CI stabilizes | ||
version: 2 | ||
updates: [] | ||
# - package-ecosystem: "github-actions" | ||
# directory: "/un" | ||
# schedule: | ||
# interval: "daily" | ||
# | ||
# - package-ecosystem: "gomod" | ||
# directory: "addons/" | ||
# schedule: | ||
# interval: "daily" | ||
# | ||
# - package-ecosystem: "gomod" | ||
# directory: "pinniped-components/post-deploy/" | ||
# schedule: | ||
# interval: "daily" | ||
# | ||
# - package-ecosystem: "gomod" | ||
# directory: "/" | ||
# schedule: | ||
# interval: "daily" | ||
# | ||
# - package-ecosystem: "gomod" | ||
# directory: "hack/packages/kbld-image-replace/" | ||
# schedule: | ||
# interval: "daily" | ||
# | ||
# - package-ecosystem: "gomod" | ||
# directory: "hack/tools/" | ||
# schedule: | ||
# interval: "daily" | ||
# | ||
# - package-ecosystem: "gomod" | ||
# directory: "pkg/v1/providers/tests/" | ||
# schedule: | ||
# interval: "daily" | ||
# | ||
# - package-ecosystem: "npm" | ||
# directory: "tkg/web/e2e/" | ||
# schedule: | ||
# interval: "daily" | ||
# | ||
# - package-ecosystem: "npm" | ||
# directory: "tkg/web/node-server/" | ||
# schedule: | ||
# interval: "daily" | ||
# | ||
# - package-ecosystem: "npm" | ||
# directory: "tkg/web/" | ||
# schedule: | ||
# interval: "daily" | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
open-pull-requests-limit: 0 | ||
|
||
- package-ecosystem: "gomod" | ||
directory: "addons/" | ||
schedule: | ||
interval: "daily" | ||
open-pull-requests-limit: 0 | ||
|
||
- package-ecosystem: "gomod" | ||
directory: "pinniped-components/post-deploy/" | ||
schedule: | ||
interval: "daily" | ||
open-pull-requests-limit: 0 | ||
|
||
- package-ecosystem: "gomod" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
open-pull-requests-limit: 0 | ||
|
||
- package-ecosystem: "gomod" | ||
directory: "hack/packages/kbld-image-replace/" | ||
schedule: | ||
interval: "daily" | ||
open-pull-requests-limit: 0 | ||
|
||
- package-ecosystem: "gomod" | ||
directory: "hack/tools/" | ||
schedule: | ||
interval: "daily" | ||
open-pull-requests-limit: 0 | ||
|
||
- package-ecosystem: "gomod" | ||
directory: "pkg/v1/providers/tests/" | ||
schedule: | ||
interval: "daily" | ||
open-pull-requests-limit: 0 | ||
|
||
- package-ecosystem: "npm" | ||
directory: "tkg/web/e2e/" | ||
schedule: | ||
interval: "daily" | ||
open-pull-requests-limit: 0 | ||
|
||
- package-ecosystem: "npm" | ||
directory: "tkg/web/node-server/" | ||
schedule: | ||
interval: "daily" | ||
open-pull-requests-limit: 0 | ||
|
||
- package-ecosystem: "npm" | ||
directory: "tkg/web/" | ||
schedule: | ||
interval: "daily" | ||
open-pull-requests-limit: 0 |