-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathrenovate.json
More file actions
39 lines (39 loc) · 916 Bytes
/
Copy pathrenovate.json
File metadata and controls
39 lines (39 loc) · 916 Bytes
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"prConcurrentLimit": 0,
"prHourlyLimit": 0,
"ignorePaths": [
"archives/**",
"common/argocd/**"
],
"packageRules": [
{
"description": "Immich Postgres: block major bumps, PG major upgrade needs a manual dump/restore (vector extensions)",
"matchPackageNames": ["ghcr.io/immich-app/postgres"],
"matchUpdateTypes": ["major"],
"enabled": false
}
],
"argocd": {
"managerFilePatterns": [
"/\\.yaml$/"
]
},
"customManagers": [
{
"customType": "regex",
"description": "Update docker image references",
"managerFilePatterns": [
"/\\.yaml$/",
"/\\.yml$/"
],
"matchStrings": [
"image: (?<depName>.*?):(?<currentValue>.*?)\\s+"
],
"datasourceTemplate": "docker"
}
]
}