Skip to content

Commit c6807b0

Browse files
authored
Added renovate.json (#3)
- configuration for renovate
1 parent c6b024c commit c6807b0

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

renovate.json

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"enabled": true,
4+
"dependencyDashboard": true,
5+
"schedule": [
6+
"before 4am on Monday"
7+
],
8+
"lockFileMaintenance": {
9+
"enabled": true
10+
},
11+
"packageRules": [
12+
{
13+
"managers": ["github-actions"],
14+
"groupName": "all github actions",
15+
"groupSlug": "all-github-actions"
16+
},
17+
{
18+
"managers": ["gradle"],
19+
"matchPackagePatterns": [
20+
"*"
21+
],
22+
"excludePackagePatterns": [
23+
"^org\\.jetbrains\\.kotlinx?[.:]"
24+
],
25+
"matchUpdateTypes": [
26+
"minor",
27+
"patch"
28+
],
29+
"groupName": "all non-major dependencies (except core Kotlin)",
30+
"groupSlug": "all-minor-patch"
31+
},
32+
{
33+
"managers": ["gradle"],
34+
"matchPackagePatterns": [
35+
"^org\\.jetbrains\\.kotlinx?[.:]"
36+
],
37+
"groupName": "Kotlin core dependencies",
38+
"groupSlug": "core-kotlin"
39+
}
40+
],
41+
"hostRules": [
42+
{
43+
"matchHost": "maven.pkg.github.com",
44+
"hostType": "maven"
45+
}
46+
]
47+
}

0 commit comments

Comments
 (0)