-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathrenovate.json
More file actions
102 lines (102 loc) · 2.31 KB
/
renovate.json
File metadata and controls
102 lines (102 loc) · 2.31 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",
"extends": [
"github>grafana/grafana-renovate-config//presets/k6/k6-engine-base.json",
"schedule:weekly"
],
"ignorePaths": [
"**/vendor/**",
".github/workflows/xk6-tests/**"
],
"prConcurrentLimit": 50,
"packageRules": [
{
"description": "Enable gomod updates with common options",
"matchManagers": [
"gomod"
],
"enabled": true,
"postUpdateOptions": [
"gomodTidy",
"gomodUpdateImportPaths"
]
},
{
"description": "Do not update indirect dependencies",
"matchManagers": ["gomod"],
"matchDepTypes": ["indirect"],
"enabled": false
},
{
"groupName": "golangx",
"description": "Group golang.org/x modules",
"matchManagers": [
"gomod"
],
"matchPackageNames": [
"/^golang\\.org/x//"
]
},
{
"groupName": "googles",
"description": "Group google.golang.org modules",
"matchManagers": [
"gomod"
],
"matchPackageNames": [
"/^google\\.golang\\.org//"
]
},
{
"description": "Disable list for frozen Go modules - see Dependencies.md and modtools_frozen.yml",
"matchManagers": [
"gomod"
],
"enabled": false,
"matchPackageNames": [
"github.com/andybalholm/cascadia",
"github.com/sirupsen/logrus",
"github.com/spf13/afero",
"github.com/spf13/cobra",
"github.com/spf13/pflag",
"github.com/influxdata/influxdb1-client",
"gopkg.in/guregu/null.v3",
"gopkg.in/yaml.v3"
]
},
{
"description": "k6 dockerfiles",
"matchManagers": [
"docker"
],
"ignorePaths": [
"packaging/**"
],
"extends": [
"schedule:monthly"
]
},
{
"description": "Dockerfiles packaging tool",
"matchManagers": [
"docker"
],
"matchFileNames": [
"packaging/**"
],
"extends": [
"schedule:quarterly"
]
},
{
"groupName": "examples/",
"description": "Grouped updates for examples folder with a low frequency",
"matchFileNames": [
"examples/**"
],
"extends": [
"schedule:quarterly"
]
}
]
}