-
Notifications
You must be signed in to change notification settings - Fork 5
/
renovate.json
113 lines (105 loc) · 3.16 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
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
102
103
104
105
106
107
108
109
110
111
112
113
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
":label(type/renovate)",
":docker",
"docker:enableMajor",
"docker:pinDigests",
":disableRateLimiting",
":ignoreUnstable",
":pinVersions",
":separateMajorReleases",
":automergePr",
":automergeRequireAllStatusChecks",
":automergeAll",
":semanticCommits",
":enableVulnerabilityAlerts",
":enableVulnerabilityAlertsWithLabel(security)"
],
"rebaseWhen": "conflicted",
"platformAutomerge": true,
"rebaseLabel": "renovate/rebase",
"stopUpdatingLabel": "renovate/stop-updating",
"major": { "labels": ["bump/major"] },
"minor": { "labels": ["bump/minor"] },
"patch": { "labels": ["bump/patch"] },
"pin": { "labels": ["bump/pin"] },
"digest": { "labels": ["bump/digest"] },
"regexManagers": [
{
"fileMatch": ["^stages/.*\\.sh$"],
"matchStrings": [
"#\\s*renovate:\\s*datasource=(?<datasource>.*?) depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?( registryUrl=(?<registryUrl>.*?))?\\n_tag='(?<currentValue>.*)'\\s"
],
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}"
},
{
"fileMatch": ["^stages/.*\\.sh$"],
"matchStrings": [
"#\\s*renovate:\\s*depName=(?<depName>.*?)\\n_commit='(?<currentValue>)(?<currentDigest>.*?)'"
],
"versioningTemplate": "git",
"datasourceTemplate": "git-refs"
},
{
"fileMatch": ["^Dockerfile$"],
"matchStrings": [
"#\\s*renovate:\\s*datasource=(?<datasource>.*?) depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?( registryUrl=(?<registryUrl>.*?))?\\n(ENV|ARG) .*?_VERSION='(?<currentValue>.*)'\\s"
],
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}"
}
],
"packageRules": [
{
"packageNames": [
"Kitware/CMake",
"DLTcollab/sse2neon",
"tukaani-project/xz",
"xiph/ogg",
"strukturag/libde265",
"xiph/vorbis",
"Fintel/libvpl",
"xiph/opus",
"AOMediaCodec/SVT-AV1",
"strukturag/libheif",
"protocolbuffers/protobuf",
"microsoft/onnxruntime"
],
"extractVersion": "^v(?<version>.+)$"
},
{
"packageNames": ["mm2/Little-CMS"],
"extractVersion": "^lcms(?<version>.+)$"
},
{
"packageNames": ["FFmpeg/nv-codec-headers"],
"extractVersion": "^n(?<version>.+)$"
},
{
"packageNames": ["sekrit-twc/zimg"],
"extractVersion": "^release-(?<version>.+)$"
},
{
"packageNames": ["bblanchon/pdfium-binaries"],
"extractVersion": "^chromium/(?<version>.+)$"
},
{
"packageNames": ["intel/libva"],
"extractVersion": "^(?<version>\\d+\\.\\d+\\.\\d+)$"
},
{
"packageNames": ["intel/libvpl"],
"extractVersion": "^v(?<version>\\d+\\.\\d+\\.\\d+)$",
"allowedVersions": "!/^v202(0|1|2|3)$/"
},
{
"packageNames": ["mesa/drm"],
"extractVersion": "^libdrm-(?<version>.+)$"
},
{
"packageNames": ["xorg/lib/libpciaccess"],
"extractVersion": "^libpciaccess-(?<version>.+)$"
}
]
}