-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
86 lines (86 loc) · 2.4 KB
/
Copy pathrenovate.json
File metadata and controls
86 lines (86 loc) · 2.4 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:best-practices"
],
"customManagers": [
{
"customType": "regex",
"managerFilePatterns": [
"/^docker\\/construct\\/versions\\.env$/"
],
"matchStrings": [
"TIRITH_VERSION=(?<currentValue>\\S+)"
],
"depNameTemplate": "sheeki03/tirith",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v?(?<version>.*)$"
},
{
"customType": "regex",
"managerFilePatterns": [
"/^docker\\/construct\\/versions\\.env$/"
],
"matchStrings": [
"SHELLFIRM_VERSION=(?<currentValue>\\S+)"
],
"depNameTemplate": "shellfirm",
"datasourceTemplate": "crate"
},
{
"customType": "regex",
"managerFilePatterns": [
"/^docker\\/construct\\/versions\\.env$/"
],
"matchStrings": [
"MISE_VERSION=(?<currentValue>\\S+)"
],
"depNameTemplate": "jdx/mise",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v?(?<version>.*)$"
},
{
"customType": "regex",
"managerFilePatterns": [
"/^rust-toolchain\\.toml$/"
],
"matchStrings": [
"channel = \"(?<currentValue>\\d+\\.\\d+\\.\\d+)\""
],
"depNameTemplate": "rust-lang/rust",
"datasourceTemplate": "github-tags",
"extractVersionTemplate": "^(?<version>\\d+\\.\\d+\\.\\d+)$"
},
{
"customType": "regex",
"managerFilePatterns": [
"/^crates\\/jackin-runtime\\/src\\/runtime\\/docker_profile\\.rs$/"
],
"matchStrings": [
"DIND_PRIVILEGED_IMAGE: &str = \"docker:(?<currentValue>\\d+-dind)\""
],
"depNameTemplate": "docker",
"datasourceTemplate": "docker"
},
{
"customType": "regex",
"managerFilePatterns": [
"/^crates\\/jackin-runtime\\/src\\/runtime\\/docker_profile\\.rs$/"
],
"matchStrings": [
"DIND_ROOTLESS_IMAGE: &str = \"docker:(?<currentValue>\\d+-dind-rootless)\""
],
"depNameTemplate": "docker",
"datasourceTemplate": "docker"
}
],
"prHourlyLimit": 4,
"prConcurrentLimit": 4,
"branchConcurrentLimit": 4,
"commitBody": "Signed-off-by: Renovate Bot <renovate@whitesourcesoftware.com>",
"recreateWhen": "always",
"lockFileMaintenance": {
"enabled": true,
"schedule": ["at any time"]
}
}