Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Configure Renovate #5056

Merged
merged 18 commits into from
Feb 2, 2021
58 changes: 58 additions & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
"schedule:weekly",
":dependencyDashboard",
":semanticCommits",
":semanticCommitScope(deps)",
"group:linters",
"group:googleapis",
"group:goOpenapi"
],
"packageRules": [
{
"datasources": ["docker"],
"updateTypes": ["patch"],
"groupName": "docker patch updates",
"groupSlug": "docker-updates"
},
{
"datasources": ["go"],
"updateTypes": ["patch", "minor"],
"groupName": "go.mod dependencies",
"groupSlug": "go-mod-updates"
},
{
"datasources": ["npm"],
"updateTypes": ["patch", "minor"],
"groupName": "npm dependencies",
"groupSlug": "npm-updates"
},
{ // major updates do not create PRs automatically
"updateTypes": ["major"],
"dependencyDashboardApproval": true,
},
{ // disable python package updates initially, because they are not stable
"languages": ["python"],
"enabled": false
},
{ // we've deprecated bazel
"managers": ["bazel"],
"enabled": false
}
],
"ignorePaths": [
"components/deprecated/",
"third_party/",
"components/ibm-components/",
"components/azure/",
Bobgy marked this conversation as resolved.
Show resolved Hide resolved
"components/presto/",
"components/arena/",
"components/aws/",
"backend/api/python_http_client/",
"manifests/kustomize/"
],
"dependencyDashboardApproval": true, // require approval for all updates initially
"separateMinorPatch": true
}