-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json
81 lines (81 loc) · 2.04 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"enabledManagers": [
"dockerfile",
"github-actions",
"custom.regex"
],
"dependencyDashboard": true,
"dependencyDashboardTitle": "Dependencies Dashboard",
"automerge": true,
"platformAutomerge": true,
"automergeType": "pr",
"automergeStrategy": "squash",
"ignoreTests": false,
"hostRules": [
{
"hostType": "docker",
"matchHost": "ghcr.io",
"username": "blockjoy[bot]",
"password": "{{ secrets.RENOVATE_TOKEN }}"
}
],
"customManagers": [
{
"customType": "regex",
"fileMatch": [
".*babel\\.yaml$"
],
"matchStrings": [
"container_uri:\\s+docker://(?<depName>[^:]+):(?<currentValue>v\\d{8}\\.\\d+)"
],
"datasourceTemplate": "docker",
"depNameTemplate": "{{{depName}}}",
"versioningTemplate": "regex:^v(?<major>\\d{8})\\.(?<minor>\\d+)$"
}
],
"packageRules": [
{
"description": "Client version control. To exclude multiple versions, use pattern: /^(?!2\\.56\\.0-.*|2\\.57\\.0-.*|3\\.0\\.0-.*).*$/ to exclude versions 2.56.0, 2.57.0, and 3.0.0 with any sha",
"matchFileNames": [
"clients/**"
],
"allowedVersions": ".*",
"enabled": true,
"matchPackageNames": [
"/.*_VERSION/"
]
},
{
"description": "Internal image dependencies",
"matchDatasources": [
"docker"
],
"enabled": true,
"groupName": "internal-dependencies",
"pinDigests": false,
"separateMinorPatch": false,
"separateMajorMinor": false,
"matchPackagePatterns": [
"^ghcr.io/blockjoy/"
],
"versioning": "regex:^v(?<major>\\d{8})\\.(?<minor>\\d+)$"
},
{
"description": "Disable updates for Ubuntu base images",
"matchDatasources": [
"docker"
],
"matchPackageNames": [
"debian",
"ubuntu"
],
"enabled": false
}
],
"prHourlyLimit": 0,
"prConcurrentLimit": 0
}