-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json5
More file actions
104 lines (104 loc) · 2.96 KB
/
Copy pathrenovate.json5
File metadata and controls
104 lines (104 loc) · 2.96 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
$schema: 'https://docs.renovatebot.com/renovate-schema.json',
extends: [
'github>erhardtconsulting/renovate-rules:default',
],
packageRules: [
/*
Version restrictions
*/
// base-php/8.3.Dockerfile - Restrict to php 8.3.x
{
matchFileNames: ['base-php/8.3.Dockerfile'],
matchDatasources: ['docker'],
matchPackageNames: ['docker.io/library/php'],
allowedVersions: '8.3.x',
},
// base-php/8.4.Dockerfile - Restrict to php 8.4.x
{
matchFileNames: ['base-php/8.4.Dockerfile'],
matchDatasources: ['docker'],
matchPackageNames: ['docker.io/library/php'],
allowedVersions: '8.4.x',
},
// base-python/3.12.Dockerfile - Restrict to python 3.12.x
{
matchFileNames: ['base-python/3.12.Dockerfile'],
matchDatasources: ['docker'],
matchPackageNames: ['docker.io/library/python'],
allowedVersions: '3.12.x',
},
// base-python/3.13.Dockerfile - Restrict to python 3.13.x
{
matchFileNames: ['base-python/3.13.Dockerfile'],
matchDatasources: ['docker'],
matchPackageNames: ['docker.io/library/python'],
allowedVersions: '3.13.x',
},
// nextcloud/Dockerfile - Restrict to php 8.3.x
{
matchFileNames: ['nextcloud/Dockerfile'],
matchDatasources: ['docker'],
matchPackageNames: ['ghcr.io/erhardtconsulting/base-php'],
allowedVersions: '8.3.x',
},
// mcpo/Dockerfile - Restrict to python 3.12.x
{
matchFileNames: ['mcpo/Dockerfile'],
matchDatasources: ['docker'],
matchPackageNames: ['ghcr.io/erhardtconsulting/base-python'],
allowedVersions: '3.12.x',
},
/*
Auto-merge configuration
*/
// Auto-merge docker digest-only
{
matchDatasources: ['docker'],
matchPackageNames: ['docker.io/library/debian'],
matchUpdateTypes: ['digest'],
automerge: true,
},
// Auto-merge docker minor, patch, digest
{
matchDatasources: ['docker'],
matchPackageNames: [
'docker.io/library/php',
'docker.io/library/python',
'docker.io/renovate/renovate',
'ghcr.io/erhardtconsulting/*',
'quay.io/argoproj/argocd',
],
matchUpdateTypes: ['minor', 'patch', 'digest'],
automerge: true,
},
// Auto-merge github-releases
{
matchDatasources: ['github-releases'],
matchDepNames: [
'aptible/supercronic',
'astral-sh/uv',
'dotenvx/dotenvx',
'getsops/sops',
'mlocati/docker-php-extension-installer',
'nextcloud/server',
'python-poetry/poetry',
'rclone/rclone',
'TwiN/gatus',
],
matchUpdateTypes: ['minor', 'patch'],
automerge: true,
},
// Auto-merge github-tags
{
matchDatasources: ['github-tags'],
matchDepNames: [
'nodejs/node',
'nvm-sh/nvm',
'FreshRSS/FreshRSS',
],
matchUpdateTypes: ['minor', 'patch'],
automerge: true,
}
]
}