-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlegacy.json
40 lines (40 loc) · 953 Bytes
/
legacy.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
{
"description": ["Pin packages and disable specific updates for legacy projects"],
"packageRules": [
{
"allowedVersions": "<3",
"datasources": ["docker"],
"packageNames": ["cimg/python", "circleci/python", "python"],
"versioning": "regex:^(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)(?<prerelease>(a|b|rc)\\d+)?(-(?<compatibility>.*))?$"
},
{
"packageNames": ["memcached"],
"datasources": ["docker"],
"allowedVersions": "<1.5"
},
{
"packageNames": ["mysql"],
"datasources": ["docker"],
"allowedVersions": "<5.6"
},
{
"packageNames": ["rabbitmq"],
"datasources": ["docker"],
"allowedVersions": "<3.7"
},
{
"packageNames": ["redis"],
"datasources": ["docker"],
"allowedVersions": "<3.3"
}
],
"html": {
"enabled": false
},
"npm": {
"enabled": false
},
"python": {
"enabled": false
}
}