-
Notifications
You must be signed in to change notification settings - Fork 6
/
renovate.json
42 lines (42 loc) · 1 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"prHourlyLimit": 0,
"ignorePaths": [
"tests/*",
"demos/*",
"benchmarks/*"
],
"packageRules": [
{
"description": "Group relevant Dockerfiles that are used for the Chiselled images",
"matchPaths": ["chiselled-jre/Dockerfile*"],
"groupName": "Dockerfiles of Chiselled images",
"enabled": true,
"matchDatasources": [
"docker"
],
"matchUpdateTypes": [
"pinDigest"
]
}
],
"baseBranches": [
"/^channels\\/.*/"
],
"customManagers": [
{
"customType": "regex",
"fileMatch": [
"(^|/|\\.)([Dd]ocker|[Cc]ontainer)file$",
"(^|/)([Dd]ocker|[Cc]ontainer)file[^/]*$"
],
"matchStrings": ["ARG CHISEL_VERSION=(?<currentValue>.*?)\\s"],
"datasourceTemplate": "github-releases",
"depNameTemplate": "canonical/chisel",
"extractVersionTemplate": "^v(?<version>.*)$"
}
]
}