Update Renovate config (#1649)

* Update `config:base` to `config:recommended` (rename)
* Schedule on every Sunday
* Group all GitHub Actions deps in a single PR
* Ignore issue moderator, since we'll manually update it (possibly with config changes)
* Include and exclude Gradle dependencies (will enable ktlint individually in the future)
* Include Gradle itself (Gradle Wrapper)
This commit is contained in:
stevenyomi 2024-03-02 10:48:47 +00:00 committed by GitHub
parent 60c28a011a
commit f5b84ad057
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

15
.github/renovate.json vendored
View File

@ -1,8 +1,21 @@
{
"extends": [
"config:base"
"config:recommended"
],
"schedule": ["every sunday"],
"includePaths": [
"gradle/**",
".github/**"
],
"ignoreDeps": ["keiyoushi/issue-moderator-action"],
"packageRules": [
{
"matchManagers": ["github-actions"],
"groupName": "{{manager}} dependencies"
},
{
"matchManagers": ["gradle"],
"enabled": false
}
]
}