Skip to content

Commit c085601

Browse files
Configure Renovate (#13)
* Add renovate.json * Update renovate.json * Try using regexManagers for ktor updates * Revert "Try using regexManagers for ktor updates" This reverts commit d46515f. * Update ktor2 allowedVersions rule --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: MR3Y <abdonasr379@gmail.com>
1 parent 23b8e4a commit c085601

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

renovate.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": [
4+
"config:base",
5+
"group:all",
6+
":dependencyDashboard",
7+
"schedule:weekly"
8+
],
9+
"baseBranches": [
10+
"main"
11+
],
12+
"labels": [
13+
"dependencies"
14+
],
15+
"packageRules": [
16+
{
17+
"matchPackagePrefixes": [
18+
"dev.drewhamilton.poko",
19+
"org.jetbrains.kotlin"
20+
],
21+
"groupName": "kotlin"
22+
},
23+
{
24+
"matchPackagePrefixes": [
25+
"io.ktor"
26+
],
27+
"matchCurrentValue": "2.*",
28+
"allowedVersions": "<3.0.0",
29+
"groupName": "ktor2"
30+
},
31+
{
32+
"matchPackagePrefixes": [
33+
"io.ktor"
34+
],
35+
"matchCurrentValue": "3.*",
36+
"allowedVersions": ">=3.0.0",
37+
"groupName": "ktor3"
38+
}
39+
]
40+
}

0 commit comments

Comments
 (0)