Skip to content

Commit

Permalink
chore(config): migrate renovate config (#461)
Browse files Browse the repository at this point in the history
* 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
renovate[bot] and drewhamilton authored Jan 8, 2025
1 parent d80a84a commit 5a57621
Showing 1 changed file with 22 additions and 21 deletions.
43 changes: 22 additions & 21 deletions renovate.json5
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',
],
}

0 comments on commit 5a57621

Please sign in to comment.