From 9f818536a481d405a342c5495f1fbb5b37138b7f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 9 Nov 2024 20:30:26 +0000 Subject: [PATCH] chore(config): migrate config .github/renovate.json5 --- .github/renovate.json5 | 59 +++++++++++++++++++++--------------------- 1 file changed, 29 insertions(+), 30 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index cdae40d..210da6f 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -1,44 +1,43 @@ { - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:base", - "schedule:weekly", + $schema: 'https://docs.renovatebot.com/renovate-schema.json', + extends: [ + 'config:recommended', + 'schedule:weekly', ], - "labels": [ - "chore", - "skip-changelog", + labels: [ + 'chore', + 'skip-changelog', ], - "rebaseWhen": "conflicted", - // deps that shouldn't be forced on users to be the latest ones - "ignoreDeps": [ - "org.jetbrains.kotlinx:kotlinx-serialization-core", - "org.jetbrains.kotlinx:kotlinx-serialization-json", - "androidx.appcompat:appcompat", - "androidx.compose.foundation:foundation", - "androidx.compose.material3:material3", - "androidx.lifecycle:lifecycle-runtime", + rebaseWhen: 'conflicted', + ignoreDeps: [ + 'org.jetbrains.kotlinx:kotlinx-serialization-core', + 'org.jetbrains.kotlinx:kotlinx-serialization-json', + 'androidx.appcompat:appcompat', + 'androidx.compose.foundation:foundation', + 'androidx.compose.material3:material3', + 'androidx.lifecycle:lifecycle-runtime', ], - "packageRules": [ + packageRules: [ { - "groupName": "GitHub Actions", - "matchPaths": [ - ".github/**", + groupName: 'GitHub Actions', + matchFileNames: [ + '.github/**', ], }, { - "groupName": "Compose & Accompanist", - "matchPackageNames": [ - "androidx.compose", - "com.google.accompanist", + groupName: 'Compose & Accompanist', + matchPackageNames: [ + 'androidx.compose', + 'com.google.accompanist', ], }, { - "groupName": "Kotlin & Dokka & Compose Compiler", - "matchPackagePrefixes": [ - "org.jetbrains.kotlin", - "org.jetbrains.dokka", - "androidx.compose.compiler", + groupName: 'Kotlin & Dokka & Compose Compiler', + matchPackageNames: [ + 'org.jetbrains.kotlin{/,}**', + 'org.jetbrains.dokka{/,}**', + 'androidx.compose.compiler{/,}**', ], }, - ] + ], }