forked from parca-dev/parca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
75 lines (75 loc) · 2.29 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["github>parca-dev/.github"],
"schedule": [
"after 8pm every weekday",
"before 4am every weekday",
"every weekend"
],
"updateNotScheduled": false,
"packageRules": [
{
"description": "One week stability period for Buf packages",
"matchFileNames": ["buf.gen.yaml"],
"minimumReleaseAge": "7 days"
},
{
"description": "Group buf packages",
"matchPackageNames": ["bufbuild/buf", "bufbuild/buf-setup-action"],
"minimumReleaseAge": "7 days",
"groupName": "buf"
},
{
"description": "Group grafana packages",
"matchSourceUrls": ["https://github.com/grafana/grafana"],
"groupName": "grafana"
},
{
"description": "Group grpc-gateway packages",
"matchSourceUrls": ["https://github.com/grpc-ecosystem/grpc-gateway"],
"groupName": "grpc-gateway"
},
{
"description": "Group grpc-health-probe packages",
"matchSourceUrls": [
"https://github.com/grpc-ecosystem/grpc-health-probe"
],
"groupName": "grpc-health-probe"
},
{
"description": "Group protobuf-ts packages",
"matchSourceUrls": ["https://github.com/timostamm/protobuf-ts"],
"groupName": "protobuf-ts"
},
{
"description": "Group prettier packages",
"matchPackageNames": ["pre-commit/mirrors-prettier", "prettier"],
"groupName": "prettier"
},
{
"description": "Group protobuf-go packages",
"matchSourceUrls": ["https://github.com/protocolbuffers/protobuf-go"],
"groupName": "protobuf-go"
},
{
"description": "Disable tailwindcss upgrades",
"matchPackageNames": ["tailwindcss", "prettier-plugin-tailwindcss"],
"enabled": false
},
{
"description": "Disable eslint upgrades",
"matchPackageNames": ["eslint"],
"enabled": false
}
],
"customManagers": [
{
"customType": "regex",
"description": "Update Buf plugins",
"fileMatch": ["(^|/)buf\\.gen\\.yaml$"],
"matchStrings": [
"# renovate: datasource=(?<datasource>.+?) depName=(?<depName>.+?)(?: (?:packageName)=(?<packageName>.+?))?(?: versioning=(?<versioning>.+?))?\\s*-?\\s*plugin: ('|\")?.*:(?<currentValue>.+?)('|\")?\\s"
]
}
]
}