Skip to content

Commit

Permalink
Configure Renovate (#1277)
Browse files Browse the repository at this point in the history
* Add renovate.json
* Delete dependabot.yml

Co-authored-by: Peter Trifanov <[email protected]>
  • Loading branch information
renovate[bot] and petertrr authored Apr 29, 2022
1 parent 7b4b379 commit 90b8529
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 12 deletions.
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"
}
]
}

0 comments on commit 90b8529

Please sign in to comment.