-
Notifications
You must be signed in to change notification settings - Fork 148
Expand file tree
/
Copy pathrenovate.json
More file actions
102 lines (102 loc) · 2.7 KB
/
Copy pathrenovate.json
File metadata and controls
102 lines (102 loc) · 2.7 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"automergeStrategy": "rebase",
"automergeType": "pr",
"prConcurrentLimit": 0,
"packageRules": [
{
"addLabels": [
"allow-automatic-merge"
],
"matchFileNames": [
"**/rpms.lock.yaml"
]
}
],
"dockerfile": {
"enabled": true,
"ignoreTests": false,
"schedule": [
"at any time"
],
"packageRules": [
{
"matchPackageNames": ["*"],
"addLabels": [
"allow-automatic-merge"
]
}
]
},
"gomod": {
"enabled": false
},
"pruneBranchAfterAutomerge": true,
"rpmVulnerabilityAutomerge": "ALL",
"tekton": {
"enabled": true,
"managerFilePatterns": [
"/\\.yaml$/",
"/\\.yml$/"
],
"ignoreTests": false,
"includePaths": [
".tekton/**"
],
"schedule": [
"at any time"
],
"packageRules": [
{
"addLabels": [
"allow-automatic-merge"
],
"matchUpdateTypes": [
"digest"
]
}
]
},
"git-submodules": {
"enabled": true,
"packageRules": [
{
"addLabels": [
"allow-automatic-merge"
],
"matchPackageNames": [
"https://github.com/openshift-kni/telco-reference.git"
],
"schedule": [
"at any time"
],
"additionalBranchPrefix": "ztp/resource-generator-"
},
{
"addLabels": [
"allow-automatic-merge"
],
"matchPackageNames": [
"https://github.com/openshift/sriov-network-operator.git",
"https://github.com/openshift/cluster-node-tuning-operator.git"
],
"schedule": [
"at any time"
],
"additionalBranchPrefix": "cnf-tests/submodules-"
},
{
"addLabels": [
"allow-automatic-merge"
],
"matchPackageNames": [
"https://github.com/openshift-kni/telco5g-konflux.git"
],
"schedule": [
"at any time"
],
"additionalBranchPrefix": "telco5g-konflux-"
}
]
}
}