-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathrenovate.json
More file actions
103 lines (103 loc) · 2.3 KB
/
renovate.json
File metadata and controls
103 lines (103 loc) · 2.3 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
103
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":maintainLockFilesWeekly",
":enablePreCommit",
"group:all",
"customManagers:dockerfileVersions",
"schedule:weekly",
"docker:pinDigests",
"workarounds:supportRedHatImageVersion"
],
"customManagers": [
{
"customType": "regex",
"managerFilePatterns": [
"Makefile"
],
"matchStrings": [
"CIRRUS_CLI \\?= (?<currentValue>.*)"
],
"datasourceTemplate": "github-releases",
"versioningTemplate": "{{#if versionPrefix}}{{versionPrefix}}{{/if}}{{version}}",
"packageNameTemplate": "cirruslabs/cirrus-cli"
},
{
"customType": "regex",
"managerFilePatterns": [
"Makefile"
],
"matchStrings": [
"GITHUB_RUNNER \\?= (?<currentValue>.*)"
],
"datasourceTemplate": "github-releases",
"versioningTemplate": "{{version}}",
"packageNameTemplate": "actions/runner"
},
{
"customType": "regex",
"managerFilePatterns": [
"Makefile"
],
"matchStrings": [
"GITLAB_RUNNER \\?= (?<currentValue>.*)"
],
"datasourceTemplate": "gitlab-tags",
"versioningTemplate": "{{version}}",
"packageNameTemplate": "gitlab-org/gitlab-runner"
}
],
"packageRules": [
{
"description": "Enable go indirect dependencies",
"matchManagers": [
"gomod"
],
"matchDepTypes": [
"indirect"
],
"enabled": true
},
{
"description": "Group go major upgrades",
"matchManagers": [
"gomod"
],
"matchUpdateTypes": [
"major"
],
"groupName": "go major updates"
},
{
"description": "Group patch updates",
"matchUpdateTypes": [
"patch"
],
"groupName": "Patch updates",
"automerge": true,
"platformAutomerge": true
},
{
"matchManagers": [
"custom.regex"
],
"matchPackageNames": [
"actions/runner"
]
},
{
"matchManagers": [
"custom.regex"
],
"matchPackageNames": [
"gitlab-org/gitlab-runner"
]
}
],
"postUpdateOptions": [
"gomodUpdateImportPaths",
"gomodTidy"
],
"configMigration": true
}