-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
84 lines (84 loc) · 2.38 KB
/
renovate.json
File metadata and controls
84 lines (84 loc) · 2.38 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"enabled": true,
"timezone": "Europe/Berlin",
"extends": [
"config:recommended",
":semanticPrefixFixDepsChoreOthers",
":prConcurrentLimitNone",
":prHourlyLimitNone"
],
"enabledManagers": [
"bundler",
"custom.regex",
"github-actions"
],
"dockerfile": {
"enabled": false
},
"docker-compose": {
"enabled": false
},
"github-actions": {
"managerFilePatterns": [
"/\\.github/workflows/.*\\.ya?ml/"
]
},
"configMigration": false,
"rangeStrategy": "pin",
"vulnerabilityAlerts": {
"labels": [
"security"
]
},
"branchConcurrentLimit": 0,
"rebaseWhen": "conflicted",
"updateNotScheduled": true,
"separateMajorMinor": false,
"separateMultipleMajor": false,
"separateMinorPatch": true,
"autoApprove": false,
"automerge": false,
"labels": [
"infrastructure"
],
"draftPR": false,
"prCreation": "immediate",
"gitAuthor": "Renovate bot <server@regiohelden.de>",
"ignoreDeps": [],
"customManagers": [
{
"description": "regex match for ruby gem in Dockerfile",
"customType": "regex",
"managerFilePatterns": [
"/^Dockerfile$/"
],
"matchStrings": [
"# renovate: datasource=(?<datasource>.*?) depName=(?<depName>[^\\s]+?)\\s+[\\w\\s]+=(?<currentValue>[\\w+\\.]*)"
]
},
{
"description": "regex match for default config with datasource definition",
"customType": "regex",
"managerFilePatterns": [
"/^config_defaults.yml$/"
],
"matchStrings": [
"# renovate: datasource=(?<datasource>.*?) depName=(?<depName>[^\\s]+?)\\s+\\w+:\\s['\"]?(?<currentValue>[\\w+\\.]*)['\"]?",
"# renovate: datasource=(?<datasource>.*?) depName=(?<depName>.*?) registryUrl=(?<registryUrl>.*?)\\s+\\w+: \"(?<currentValue>\\d+\\.\\d+\\.\\d+)\""
]
}
],
"packageRules": [
{
"matchUpdateTypes": [
"major",
"minor",
"patch"
],
"schedule": [
"before 5am"
]
}
]
}