diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2022-11-13 01:08:38 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2022-11-13 01:08:38 +0530 |
commit | ce40f413b95cdcf9b762c0b45990349848ca2f40 (patch) | |
tree | 7f562da607da9735e167dc09e65e935614bb46dd /.github | |
parent | b8bc9d373a0def6b2160ea2c0f4e18ae46df4e2f (diff) |
feat(renovate): add a regex manager for Compose Compiler
Diffstat (limited to '.github')
-rw-r--r-- | .github/renovate.json | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/renovate.json b/.github/renovate.json index fefbcd40..50b0156f 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -22,5 +22,17 @@ ], "enabled": false } + ], + "regexManagers": [ + { + "fileMatch": [ + "gradle/libs.versions.toml" + ], + "matchStrings": [ + "composeCompiler = \"(?<currentValue>.*)\"" + ], + "datasourceTemplate": "maven", + "depNameTemplate": "androidx.compose.compiler:compiler" + } ] } |