-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json5
81 lines (75 loc) · 2.58 KB
/
renovate.json5
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
":disableRateLimiting",
":rebaseStalePrs",
"github>orange-cloudfoundry/renovate-presets:default.json5"
],
"packageRules": [
{
"description": "@gberche-orange assignments",
"matchPackagePatterns": [
"*"
],
"assignees": [
"gberche-orange"
]
},
// See https://docs.renovatebot.com/configuration-options/#ignoreunstable
{
"description": "Accept release candidates for goss",
"matchPackageNames": [
"goss-org/goss"
],
ignoreUnstable: false
},
],
"regexManagers": [
{
"description": "GOSS version in DockerFile https://regex101.com/r/pRv0bq/1",
"fileMatch": ["Dockerfile$"],
"matchStrings": [
"ENV GOSS_VERSION=\"(?<currentValue>.*)\""
],
"depNameTemplate": "goss-org/goss",
"datasourceTemplate": "github-releases",
//Test in https://regex101.com/r/g2sXWF/2
"versioningTemplate": "regex:v?(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)?(?<prerelease>-[0-9A-Za-z-\\.]+)?$"
},
{
"description": "YQ version in DockerFile",
"fileMatch": ["Dockerfile$"],
"matchStrings": [
"ENV YQ_VERSION=\"(?<currentValue>.*)\""
],
"depNameTemplate": "mikefarah/yq",
"datasourceTemplate": "github-releases",
"versioningTemplate": "regex:v?(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)?$"
},
{
"description": "YTT version in DockerFile https://regex101.com/r/pRv0bq/1",
"fileMatch": ["Dockerfile$"],
"matchStrings": [
"ENV YTT_VERSION=\"(?<currentValue>.*)\""
],
"depNameTemplate": "vmware-tanzu/carvel-ytt",
"datasourceTemplate": "github-releases",
"versioningTemplate": "regex:v?(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)?$"
},
{
"description": "Kuttl version in DockerFile https://regex101.com/r/pRv0bq/1",
"fileMatch": ["Dockerfile$"],
"matchStrings": [
"ENV KUTTL_VERSION=\"(?<currentValue>.*)\""
],
"depNameTemplate": "kudobuilder/kuttl",
"datasourceTemplate": "github-releases",
"versioningTemplate": "regex:v?(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)?$",
// kuttl releases start with v
// https://docs.renovatebot.com/configuration-options/#extractversion
// use this config option when the raw version strings from the datasource do not match the expected format that you need in your package file.
extractVersionTemplate: "^v(?<version>.*)"
}
]
}