|
| 1 | +{ |
| 2 | + "$schema": "https://docs.renovatebot.com/renovate-schema.json", |
| 3 | + "extends": [ |
| 4 | + "config:recommended", |
| 5 | + ":semanticCommitsDisabled", |
| 6 | + ":label(dependencies)", |
| 7 | + ":automergeStableNonMajor", |
| 8 | + ":reviewer(Mr3zee)", |
| 9 | + ], |
| 10 | + "packageRules": [ |
| 11 | + { |
| 12 | + "description": "Update Core minor and patch dependencies in batch", |
| 13 | + "matchUpdateTypes": [ |
| 14 | + "patch", |
| 15 | + "minor", |
| 16 | + ], |
| 17 | + "matchPackageNames": [ |
| 18 | + "*", |
| 19 | + ], |
| 20 | + matchFileNames: [ |
| 21 | + "!samples/**", |
| 22 | + // Samples have separate config |
| 23 | + "**/*.gradle.kts", |
| 24 | + "**/gradle.properties", |
| 25 | + "versions-root/libs.versions.toml", |
| 26 | + ], |
| 27 | + "groupName": "Core dependencies (non-major)", |
| 28 | + "groupSlug": "core-non-major", |
| 29 | + }, |
| 30 | + { |
| 31 | + "description": "Update Sample dependencies in batch", |
| 32 | + "matchUpdateTypes": [ |
| 33 | + "patch", |
| 34 | + "minor", |
| 35 | + "minor", |
| 36 | + ], |
| 37 | + "matchFileNames": [ |
| 38 | + "samples/**", |
| 39 | + ], |
| 40 | + "matchPackageNames": [ |
| 41 | + "*", |
| 42 | + ], |
| 43 | + "groupName": "Sample dependencies", |
| 44 | + "groupSlug": "sample" |
| 45 | + }, |
| 46 | + { |
| 47 | + // Reason: Kotlin updates require additional work on compiler plugins |
| 48 | + "description": "Ignore Kotlin updates", |
| 49 | + "matchDepNames": [ |
| 50 | + "org.jetbrains.kotlin(:|.)*", |
| 51 | + ], |
| 52 | + "enabled": false, |
| 53 | + }, |
| 54 | + { |
| 55 | + // Reason: May break compiler plugin tests, manual updates are just fine |
| 56 | + "description": "Ignore Intellij Platform ", |
| 57 | + "matchDepNames": [ |
| 58 | + "com.jetbrains.intellij.platform*", |
| 59 | + ], |
| 60 | + "enabled": false, |
| 61 | + }, |
| 62 | + { |
| 63 | + // Reason: Gradle version updates may break existing configurations |
| 64 | + "description": "Ignore Gradle updates in Core", |
| 65 | + "matchFileNames": [ |
| 66 | + "gradle/wrapper/gradle-wrapper.properties", |
| 67 | + ], |
| 68 | + "enabled": false, |
| 69 | + }, |
| 70 | + { |
| 71 | + "description": "Ignore 0.0.0 version in Kotlin-specific versions", |
| 72 | + "matchCurrentVersion": "0.0.0", |
| 73 | + "enabled": false, |
| 74 | + }, |
| 75 | + ] |
| 76 | +} |
0 commit comments