forked from openshift/mcp-lifecycle-operator
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrenovate.json
More file actions
55 lines (55 loc) · 1.59 KB
/
Copy pathrenovate.json
File metadata and controls
55 lines (55 loc) · 1.59 KB
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",
"assigneesFromCodeOwners": true,
"automergeStrategy": "auto",
"automergeType": "pr",
"prConcurrentLimit": 5,
"ignoreTests": false,
"rebaseLabel": "needs-rebase",
"rebaseWhen": "behind-base-branch",
"recreateWhen": "always",
"commitMessagePrefix": "[{{baseBranch}}]",
"enabledManagers": ["tekton", "gomod", "dockerfile"],
"ignorePaths": ["Dockerfile", "/docs/**"],
"postUpdateOptions": [
"gomodTidy",
"gomodUpdateImportPaths",
"gomodVendor"
],
"packageRules": [
{
"matchManagers": ["tekton"],
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"groupName": "tekton dependencies",
"automerge": true,
"description": "Group all minor tekton dependencies",
"addLabels": ["jira/valid-reference", "lgtm", "approved"]
},
{
"matchManagers": ["dockerfile"],
"matchFileNames": ["Dockerfile.ci", "Dockerfile.konflux"],
"automerge": true,
"addLabels": ["jira/valid-reference", "lgtm", "approved"]
},
{
"matchManagers": ["gomod"],
"matchUpdateTypes": ["patch", "pin", "digest"],
"groupName": "k8s.io dependencies",
"matchPackageNames": ["k8s.io/{/,}**"]
},
{
"matchManagers": ["gomod"],
"matchUpdateTypes": ["patch", "pin", "digest"],
"groupName": "sigs.k8s.io dependencies",
"matchPackageNames": ["sigs.k8s.io/{/,}**"]
},
{
"matchManagers": ["gomod"],
"matchDepTypes": ["indirect"],
"enabled": false
}
],
"vulnerabilityAlerts": {
"enabled": true
}
}