-
Notifications
You must be signed in to change notification settings - Fork 340
/
Copy pathrenovate.json
55 lines (55 loc) · 1.65 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>Kong/public-shared-renovate:backend#1.2.0",
"local>kumahq/kuma//.renovate/go-control-plane"
],
"enabledManagers": [
"custom.regex",
"dockerfile",
"github-actions",
"gomod",
"helm-values",
"kubernetes"
],
"ignorePaths": [],
"kubernetes": {
"description": "Include Kubernetes manifests from 'kumactl install demo|observability' to let Renovate update the image versions in these resources",
"fileMatch": [
"app/kumactl/data/install/k8s/.+\\.ya?ml$"
]
},
"semanticCommitScope": "deps/{{{manager}}}",
"prBodyTemplate": "{{{header}}}{{{table}}}{{{warnings}}}{{{notes}}}{{{changelogs}}}{{{controls}}}",
"packageRules": [
{
"description": "Skip tests for GitHub Actions updates",
"matchManagers": [
"github-actions"
],
"addLabels": [
"ci/skip-test"
]
},
{
"description": "Set commit scope to `deps/github-actions` for `Kong/public-shared-actions` GitHub Actions managed by `github>Kong/public-shared-renovate:backend`. Skip tests since these are also GitHub Actions updates but are not covered by the earlier rule",
"matchManagers": [
"custom.regex"
],
"matchPackageNames": [
"Kong/public-shared-actions/**"
],
"semanticCommitScope": "deps/github-actions",
"addLabels": [
"ci/skip-test"
]
},
{
"groupName": "kumactl install demo|observability container images",
"groupSlug": "kumactl-install-k8s",
"matchFileNames": [
"app/kumactl/data/install/k8s/**"
]
}
]
}