Skip to content

Commit

Permalink
Merge pull request #2021 from Adyen/renovate/migrate-config
Browse files Browse the repository at this point in the history
Migrate renovate config
  • Loading branch information
jreij authored Feb 21, 2025
2 parents cd40c64 + b2d5d58 commit 0d0283d
Showing 1 changed file with 23 additions and 17 deletions.
40 changes: 23 additions & 17 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,35 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
"config:recommended"
],
"labels": ["Dependencies"],
"packageRules" : [
"labels": [
"Dependencies"
],
"packageRules": [
{
"matchPackagePatterns": [
"org.jetbrains.kotlinx:kotlinx-coroutines.*"
],
"groupName": "Kotlin Coroutines"
"groupName": "Kotlin Coroutines",
"matchPackageNames": [
"/org.jetbrains.kotlinx:kotlinx-coroutines.*/"
]
},
{
"matchPackagePatterns": [
"androidx.compose.compiler:compiler",
"com.google.devtools.ksp",
"org.jetbrains.kotlin.*"
],
"groupName": "Kotlin"
"groupName": "Kotlin",
"matchPackageNames": [
"/androidx.compose.compiler:compiler/",
"/com.google.devtools.ksp/",
"/org.jetbrains.kotlin.*/"
]
},
{
"matchPackagePatterns" : ["*"],
"minimumReleaseAge" : "14 days",
"schedule" : ["on the first day of the month"]
"minimumReleaseAge": "14 days",
"schedule": [
"on the first day of the month"
],
"matchPackageNames": [
"*"
]
}
],
"rebaseWhen" : "never"
"rebaseWhen": "never"
}

0 comments on commit 0d0283d

Please sign in to comment.