-
Notifications
You must be signed in to change notification settings - Fork 21
/
renovate.json
48 lines (48 loc) · 1.19 KB
/
renovate.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"extends": [
"config:base"
],
"branchPrefix": "test-renovate/",
"gitAuthor": "OSS-Bot <[email protected]>",
"repositories": [
"slackhq/foundry"
],
"platformAutomerge": true,
"packageRules": [
{
"matchManagers": ["pip_requirements"],
"groupName": "Docsite Dependencies",
"automerge": true,
"extends": [
"schedule:weekly"
],
"additionalReviewers": [
"team:android-librarians"
]
},
{
"description": "Automerge non-major updates",
"matchUpdateTypes": ["minor", "patch"],
"automerge": true
},
{
"matchDepNames": [
"org.jetbrains.compose:compose-gradle-plugin",
"org.jetbrains.compose"
],
"versioning": "Compose semver",
"description": "Allow versions like 1.7.1 and 1.7.0-rc1 but not wild compose versions like 1.7.1+build1910-release-1.7.1",
"allowedVersions": "/^\\d+\\.\\d+\\.\\d+(-[a-zA-Z]+(\\.\\d+)?)?$/"
},
{
"matchDepNames": [
"com.google.guava:guava"
],
"allowedVersions": "!/\\-android$/"
},
{
"matchDepNames": ["renovatebot/github-action"],
"extends": ["schedule:monthly"]
}
]
}