aboutsummaryrefslogtreecommitdiff
path: root/.github/renovate.json5
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2022-11-28 12:28:32 +0530
committerHarsh Shandilya <me@msfjarvis.dev>2022-11-28 12:28:32 +0530
commit0efcafe46c26bc46de9080c7e9fe86d76cb8daeb (patch)
tree97b99cdebd6ad5f616118b9cc28daf021cf8fd0c /.github/renovate.json5
parentd667f3d1db13b4cd15e10fa5baa1cdc9f36c875f (diff)
chore: switch Renovate config to JSON5
Diffstat (limited to '.github/renovate.json5')
-rw-r--r--.github/renovate.json549
1 files changed, 49 insertions, 0 deletions
diff --git a/.github/renovate.json5 b/.github/renovate.json5
new file mode 100644
index 00000000..0a868aaa
--- /dev/null
+++ b/.github/renovate.json5
@@ -0,0 +1,49 @@
+{
+ "extends": [
+ "config:base",
+ ":dependencyDashboard",
+ "helpers:pinGitHubActionDigests",
+ ],
+ "packageRules": [
+ {
+ "matchPackagePatterns": [
+ "^kotlin",
+ "^org.jetbrains.kotlin",
+ "^androidx.compose.compiler"
+ ],
+ "groupName": "kotlin"
+ },
+ {
+ "managers": [
+ "gradle"
+ ],
+ "matchPackagePatterns": [
+ "^androidx.appcompat"
+ ],
+ "enabled": false
+ },
+ {
+ "matchDatasources": [
+ "maven"
+ ],
+ "matchPackageNames": [
+ "androidx.compose.compiler:compiler"
+ ],
+ "registryUrls": [
+ "https://maven.google.com/"
+ ]
+ }
+ ],
+ "regexManagers": [
+ {
+ "fileMatch": [
+ "gradle/libs.versions.toml"
+ ],
+ "matchStrings": [
+ "composeCompiler = \"(?<currentValue>.*)\""
+ ],
+ "datasourceTemplate": "maven",
+ "depNameTemplate": "androidx.compose.compiler:compiler"
+ }
+ ]
+}