-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
80 additions
and
6 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,80 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"github>SonarSource/renovate-config:languages-team" | ||
], | ||
"schedule": [ | ||
"before 4am on Monday" | ||
], | ||
"enabledManagers": [ | ||
"gradle", | ||
"gradle-wrapper", | ||
"github-actions", | ||
"gomod", | ||
"git-submodules" | ||
], | ||
"git-submodules": { | ||
"enabled": true | ||
}, | ||
"packageRules": [ | ||
{ | ||
"managers": [ | ||
"github-actions" | ||
], | ||
"pinDigests": false, | ||
"groupName": "all github actions", | ||
"groupSlug": "all-github-actions" | ||
}, | ||
{ | ||
"managers": [ | ||
"github-actions" | ||
], | ||
"matchUpdateTypes": ["pin", "rollback"], | ||
"enabled": false | ||
}, | ||
{ | ||
"managers": [ | ||
"gradle" | ||
], | ||
"matchPackagePatterns": [ | ||
"*" | ||
], | ||
"matchUpdateTypes": [ | ||
"minor", | ||
"patch" | ||
], | ||
"groupName": "all non-major dependencies", | ||
"groupSlug": "all-minor-patch" | ||
}, | ||
{ | ||
"managers": [ | ||
"gomod" | ||
], | ||
"matchPackagePatterns": [ | ||
"*" | ||
], | ||
"excludePackageNames": [ | ||
"go" | ||
], | ||
"matchUpdateTypes": [ | ||
"minor", | ||
"patch" | ||
], | ||
"groupName": "all non-major Go dependencies", | ||
"groupSlug": "all-go-minor-patch" | ||
}, | ||
{ | ||
"managers": [ | ||
"git-submodules" | ||
], | ||
"matchDepNames": [ | ||
"its/sources/traefik", | ||
"its/sources/minio", | ||
"its/sources/prometheus", | ||
"its/sources/kubernetes-client-go" | ||
], | ||
"enabled": false | ||
} | ||
], | ||
"reviewers": ["team:analysis-cloud-squad"] | ||
} |
This file was deleted.
Oops, something went wrong.