forked from CentOS/centos-bootc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
76 lines (76 loc) · 2.02 KB
/
renovate.json
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"local>centos/.github:renovate-config"
],
"customDatasources": {
"fedora-eln-compose": {
"defaultRegistryUrlTemplate": "https://odcs.fedoraproject.org/composes/production",
"format": "html"
},
"c9s-compose": {
"defaultRegistryUrlTemplate": "https://composes.stream.centos.org/development/",
"format": "html"
}
},
"customManagers": [
{
"customType": "regex",
"fileMatch": [
"fedora-eln.repo",
"fedora-bootc-config.json"
],
"matchStrings": [
"https://odcs.fedoraproject.org/composes/production/(?<currentValue>.*)/compose/(.*)",
"\"redhat.compose-id\": \"(?<currentValue>.*)\""
],
"datasourceTemplate": "custom.fedora-eln-compose",
"depNameTemplate": "Fedora-ELN",
"versioningTemplate": "regex:^Fedora-ELN-(?<major>\\d{8})\\.(?<minor>\\d+)$"
},
{
"customType": "regex",
"fileMatch": [
"c9s-devel-compose.repo",
"centos-bootc-config.json"
],
"matchStrings": [
"https://composes.stream.centos.org/development/(?<currentValue>.*)/compose/(.*)",
"\"redhat.compose-id\": \"(?<currentValue>.*)\""
],
"datasourceTemplate": "custom.c9s-compose",
"depNameTemplate": "CentOS-Stream-9",
"versioningTemplate": "regex:^CentOS-Stream-9-(?<major>\\d{8})\\.d\\.0$"
}
],
"packageRules": [
{
"matchDatasources": [
"custom.fedora-eln-compose"
],
"extractVersion": "(?<version>.+)/$",
"automerge": true,
"schedule": [
"at any time"
],
"groupName": null
},
{
"matchDatasources": [
"custom.c9s-compose"
],
"extractVersion": "(?<version>.+)/$",
"automerge": true,
"schedule": [
"at any time"
],
"groupName": null
},
{
"matchPackageNames": [
"quay.io/centos-bootc/bootc-image-builder"
],
"pinDigests": false
}
]
}