-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
75 lines (75 loc) · 2.51 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"],
"packageRules": [
{
"description": "Group Flux CD packages",
"matchPackageNames": ["/^fluxcd/.+/"],
"groupName": "fluxcd"
},
{
"description": "Update Flux CD packages even if they are pre-releases",
"matchPackageNames": [
"fluxcd/image-automation-controller",
"fluxcd/image-reflector-controller"
],
"ignoreUnstable": false
},
{
"description": "Highlight build dependencies updates",
"matchManagers": [
"helmv3",
"helm-values",
"jsonnet-bundler",
"kustomize"
],
"automerge": false,
"semanticCommitType": "build"
},
{
"description": "Highlight build dependencies updates",
"matchFileNames": ["**/kustomization.yaml", "**/*.{j,lib}sonnet"],
"automerge": false,
"semanticCommitType": "build"
},
{
"description": "Group Parca packages",
"matchSourceUrls": ["https://github.com/parca-dev/parca"],
"reviewers": ["team:backend-maintainers", "team:frontend-maintainers"],
"groupName": "parca"
},
{
"description": "Group Parca Agent packages",
"matchSourceUrls": ["https://github.com/parca-dev/parca-agent"],
"reviewers": ["team:agent-maintainers"],
"groupName": "parca-agent"
}
],
"customManagers": [
{
"description": "Update versions in Jsonnet files",
"customType": "regex",
"fileMatch": [
"grafana/lib/grafana\\.libsonnet",
"monitoring/environments/scaleway-parca-demo/main\\.jsonnet",
"monitoring/lib/kube-thanos\\.libsonnet",
"monitoring/lib/prometheus\\.libsonnet",
"parca/lib/parca\\.libsonnet",
"parca/lib/parca-agent\\.libsonnet"
],
"matchStrings": [
"// renovate: datasource=(?<datasource>.+?) depName=(?<depName>.+?)(?: packageName=(?<packageName>.+?))?(?: versioning=(?<versioning>.+?))?(?: extractVersion=(?<extractVersion>.+?))?\\s+.+:\\s'(?<currentValue>.+?)',\\s"
]
},
{
"description": "Pin Kustomize bases digests - https://github.com/renovatebot/renovate/issues/7915",
"customType": "regex",
"fileMatch": ["(^|/)kustomization.yaml$"],
"matchStrings": [
"- github\\.com\\/(?<depName>[^/]+?\\/[^/]*?)\\/.*\\?ref=(?<currentDigest>[a-f0-9]{40}) # (?<currentValue>.+)"
],
"datasourceTemplate": "github-tags",
"versioningTemplate": "semver"
}
]
}