-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathrenovate.json
More file actions
113 lines (113 loc) · 4.43 KB
/
renovate.json
File metadata and controls
113 lines (113 loc) · 4.43 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
104
105
106
107
108
109
110
111
112
113
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"ignorePresets": [
"github>grafana/grafana-renovate-config//presets/base",
"github>grafana/grafana-renovate-config//presets/automerge",
"github>grafana/grafana-renovate-config//presets/labels",
"github>grafana/grafana-renovate-config//presets/docker"
],
"extends": [
"config:best-practices"
],
"packageRules": [
{
"matchManagers": [
"github-actions"
],
"matchPackageNames": [
"grafana/plugin-actions"
],
"pinDigests": false
},
{
"matchManagers": [
"github-actions"
],
"matchPackageNames": [
"grafana/docs-base"
],
"pinDigests": false
},
{
"matchFileNames": [
"actions/plugins/frontend-e2e-against-stack/**"
],
"groupName": "frontend-e2e-against-stack dependencies"
}
],
"customManagers": [
{
"customType": "regex",
"managerFilePatterns": [".github/workflows/*.{yml,yaml}"],
"matchStrings": ["DEFAULT_NODE_VERSION:\\s*\"(?<currentValue>\\d+)\""],
"depNameTemplate": "node",
"datasourceTemplate": "node-version",
"extractVersionTemplate": "^(?<version>\\d+)"
},
{
"customType": "regex",
"managerFilePatterns": [".github/workflows/*.{yml,yaml}"],
"matchStrings": ["DEFAULT_GO_VERSION:\\s*\"(?<currentValue>\\d+\\.\\d+)\""],
"depNameTemplate": "go",
"datasourceTemplate": "golang-version",
"extractVersionTemplate": "^(?<version>\\d+\\.\\d+)"
},
{
"customType": "regex",
"managerFilePatterns": [".github/workflows/*.{yml,yaml}"],
"matchStrings": ["(?:DEFAULT_)?GOLANGCI_LINT_VERSION:\\s*\"(?<currentValue>[^\"]+)\""],
"depNameTemplate": "golangci-lint",
"packageNameTemplate": "golangci/golangci-lint",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v?(?<version>.*)$"
},
{
"customType": "regex",
"managerFilePatterns": [".github/workflows/*.{yml,yaml}"],
"matchStrings": ["DEFAULT_TRUFFLEHOG_VERSION:\\s*\"(?<currentValue>[^\"]+)\""],
"depNameTemplate": "trufflehog",
"packageNameTemplate": "trufflesecurity/trufflehog",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v?(?<version>.*)$"
},
{
"customType": "regex",
"managerFilePatterns": [".github/workflows/*.{yml,yaml}"],
"matchStrings": ["DEFAULT_MAGE_VERSION:\\s*\"(?<currentValue>[^\"]+)\""],
"depNameTemplate": "mage",
"packageNameTemplate": "magefile/mage",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v?(?<version>.*)$"
},
{
"customType": "regex",
"managerFilePatterns": [".github/workflows/*.{yml,yaml}"],
"matchStrings": ["ACTIONLINT_VERSION:\\s*\"(?<currentValue>[^\"]+)\""],
"depNameTemplate": "actionlint",
"packageNameTemplate": "rhysd/actionlint",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v?(?<version>.*)$"
},
{
"customType": "regex",
"managerFilePatterns": [".github/workflows/*.{yml,yaml}"],
"matchStrings": ["ACT_VERSION:\\s*\"(?<currentValue>[^\"]+)\""],
"depNameTemplate": "act",
"packageNameTemplate": "nektos/act",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v?(?<version>.*)$"
},
{
"customType": "regex",
"managerFilePatterns": [".github/workflows/*.{yml,yaml}"],
"matchStrings": ["DEFAULT_PLUGIN_VALIDATOR_VERSION:\\s*\"(?<currentValue>[^\"]+)\""],
"depNameTemplate": "plugin-validator",
"packageNameTemplate": "grafana/plugin-validator",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v?(?<version>.*)$"
}
],
"minimumReleaseAge": "14 days",
"prConcurrentLimit": 10,
"rebaseWhen": "behind-base-branch"
}