-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore(deps): add renovate.json * Don't require dashboard approval Co-authored-by: David van der Spek <[email protected]>
- Loading branch information
1 parent
f5cc3d4
commit 87a3408
Showing
1 changed file
with
34 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"config:base", | ||
":dependencyDashboard", | ||
":prHourlyLimit4", | ||
":prConcurrentLimit20" | ||
], | ||
"packageRules": [ | ||
{ | ||
"matchDatasources": [ | ||
"docker" | ||
], | ||
"matchUpdateTypes": [ | ||
"major" | ||
], | ||
"enabled": true | ||
}, | ||
{ | ||
"description": "Disable major update k8s client-go", | ||
"matchPackagePatterns": [ | ||
"^k8s.io/client-go" | ||
], | ||
"matchUpdateTypes": [ | ||
"major" | ||
], | ||
"enabled": false | ||
} | ||
], | ||
"labels": [ | ||
"dependencies" | ||
], | ||
"separateMinorPatch": true | ||
} |