forked from metal3-io/ironic-image
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
101 lines (101 loc) · 2.43 KB
/
renovate.json
File metadata and controls
101 lines (101 loc) · 2.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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"configMigration": true,
"baseBranchPatterns": [
"main",
"release-31.0",
"release-32.0",
"release-33.0",
"release-34.0"
],
"enabledManagers": [
"custom.regex"
],
"prCreation": "immediate",
"prHourlyLimit": 0,
"prConcurrentLimit": 0,
"automerge": false,
"labels": [
"ok-to-test"
],
"commitMessagePrefix": ":seedling: ",
"semanticCommits": "disabled",
"packageRules": [
{
"matchBaseBranches": [
"main"
],
"description": "run before 6am on Mondays",
"schedule": [
"* 0-5 * * 1"
]
},
{
"matchBaseBranches": [
"release-31.0",
"release-32.0",
"release-33.0",
"release-34.0"
],
"description": "run before 6am every day",
"schedule": [
"* 0-5 * * *"
]
},
{
"description": "Ensure any digest-pinned, GitHub-sourced, dependencies creates a link to the diff between the two commits",
"matchSourceUrls": [
"https://github.com/**/*"
],
"matchUpdateTypes": [
"digest"
],
"changelogUrl": "{{sourceUrl}}/compare/{{currentDigest}}..{{newDigest}}"
},
{
"matchDepNames": [
"pip",
"setuptools"
],
"minimumReleaseAge": "3 days"
}
],
"customManagers": [
{
"customType": "regex",
"managerFilePatterns": [
"/^Dockerfile$/"
],
"matchStrings": [
"ARG IRONIC_SOURCE=(?<currentDigest>[a-f0-9]{40})\\s+#\\s*(?<currentValue>[^\\n]+)"
],
"datasourceTemplate": "git-refs",
"depNameTemplate": "openstack-ironic",
"packageNameTemplate": "https://github.com/openstack/ironic.git",
"versioningTemplate": "loose",
"autoReplaceStringTemplate": "ARG IRONIC_SOURCE={{#if newDigest}}{{{newDigest}}}{{else}}{{{newValue}}}{{/if}} # {{{currentValue}}}"
},
{
"customType": "regex",
"managerFilePatterns": [
"/^Dockerfile$/"
],
"matchStrings": [
"ARG PIP_VERSION=(?<currentValue>\\S+)"
],
"datasourceTemplate": "pypi",
"depNameTemplate": "pip"
},
{
"customType": "regex",
"managerFilePatterns": [
"/^Dockerfile$/"
],
"matchStrings": [
"ARG SETUPTOOLS_VERSION=(?<currentValue>\\S+)"
],
"datasourceTemplate": "pypi",
"depNameTemplate": "setuptools"
}
]
}