-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
49 lines (49 loc) · 964 Bytes
/
renovate.json
File metadata and controls
49 lines (49 loc) · 964 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
40
41
42
43
44
45
46
47
48
49
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"github>tpaulus/renovate-config:auto-merge-gh-actions"
],
"prConcurrentLimit": 0,
"prHourlyLimit": 0,
"kubernetes": {
"managerFilePatterns": [
"/\\.yaml$/"
]
},
"argocd": {
"managerFilePatterns": [
"/argocd/applications/.+\\.yaml$/"
]
},
"platformAutomerge": true,
"automergeType": "branch",
"ignoreTests": true,
"packageRules": [
{
"matchManagers": [
"kubernetes",
"argocd",
"dockerfile"
],
"major": {
"automerge": false
},
"minor": {
"automerge": true
},
"patch": {
"automerge": true
},
"minimumReleaseAge": "1 day"
}
],
"hostRules": [
{
"hostType": "docker",
"matchHost": "ghcr.io",
"username": "tpaulus",
"token": "{{ secrets.tpaulus_ghcr }}"
}
]
}