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 #1277

Merged
merged 6 commits into from
Apr 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions .github/dependabot.yml

This file was deleted.

57 changes: 57 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
{
"enabled": true,
"schedule": [
"before 4am on Monday"
],
"packageRules": [
{
"managers": ["github-actions"],
"groupName": "all github actions",
"groupSlug": "all-github-actions"
},
{
"managers": ["maven"],
"matchPackagePatterns": [
"*"
],
"excludePackagePatterns": [
"^org\\.jetbrains\\.kotlin[.:]",
"^com\\.pinterest\\.ktlint[.:]"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"groupName": "all non-major dependencies (except core Kotlin)",
"groupSlug": "all-minor-patch"
},
{
"managers": ["maven"],
"matchPackagePatterns": [
"^org\\.jetbrains\\.kotlin[.:]"
],
"groupName": "Kotlin core dependencies",
"groupSlug": "core-kotlin"
},
{
"managers": ["maven"],
"matchPackagePatterns": [
"^com\\.pinterest\\.ktlint[.:]"
],
"groupName": "Ktlint",
"groupSlug": "ktlint"
},
{
"managers": ["gradle"],
"matchPackagePatterns": [
"*"
],
"matchUpdateTypes": [
"minor",
"patch"
],
"groupName": "all dependencies in gradle scripts",
"groupSlug": "all-gradle-dependencies"
}
]
}