keiyoushi-extensions-source/.github/renovate.json
stevenyomi f5b84ad057
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)
2024-03-02 17:48:47 +07:00

22 lines
390 B
JSON

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