-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(config): migrate renovate config (#461)
* chore(config): migrate config renovate.json5 * enable automatic migration going forward --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Drew Hamilton <[email protected]>
- Loading branch information
1 parent
d80a84a
commit 5a57621
Showing
1 changed file
with
22 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,35 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"config:base" | ||
$schema: 'https://docs.renovatebot.com/renovate-schema.json', | ||
extends: [ | ||
'config:recommended', | ||
], | ||
"packageRules": [ | ||
configMigration: true, | ||
packageRules: [ | ||
{ | ||
// Compiler tools are tightly coupled to Kotlin version: | ||
"groupName": "Kotlin", | ||
"matchPackagePrefixes": [ | ||
"androidx.compose.compiler", | ||
"com.google.devtools.ksp", | ||
"com.github.tschuchortdev:kotlin-compile-testing", | ||
"dev.zacsweers.kctfork", | ||
"org.jetbrains.kotlin", | ||
"org.jetbrains.kotlinx:binary-compatibility-validator", | ||
groupName: 'Kotlin', | ||
matchPackageNames: [ | ||
'androidx.compose.compiler{/,}**', | ||
'com.google.devtools.ksp{/,}**', | ||
'com.github.tschuchortdev:kotlin-compile-testing{/,}**', | ||
'dev.zacsweers.kctfork{/,}**', | ||
'org.jetbrains.kotlin{/,}**', | ||
'org.jetbrains.kotlinx:binary-compatibility-validator{/,}**', | ||
], | ||
}, | ||
{ | ||
"groupName": "Upload/download artifact", | ||
"matchPackageNames": [ | ||
"actions/download-artifact", | ||
"actions/upload-artifact", | ||
groupName: 'Upload/download artifact', | ||
matchPackageNames: [ | ||
'actions/download-artifact', | ||
'actions/upload-artifact', | ||
], | ||
}, | ||
], | ||
"ignoreDeps": [ | ||
ignoreDeps: [ | ||
// These should just match the main Kotlin version: | ||
"org.jetbrains.kotlin:kotlin-compiler-embeddable", | ||
"org.jetbrains.kotlin:kotlin-gradle-plugin-api", | ||
"org.jetbrains.kotlin:kotlin-stdlib", | ||
"org.jetbrains.kotlin:kotlin-test", | ||
'org.jetbrains.kotlin:kotlin-compiler-embeddable', | ||
'org.jetbrains.kotlin:kotlin-gradle-plugin-api', | ||
'org.jetbrains.kotlin:kotlin-stdlib', | ||
'org.jetbrains.kotlin:kotlin-test', | ||
], | ||
} |