-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json5
77 lines (77 loc) · 2.03 KB
/
renovate.json5
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
{
$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'
},
// nextcloud/Dockerfile - Restrict to php 8.3.x
{
matchFileNames: ['nextcloud/Dockerfile'],
matchDatasources: ['docker'],
matchPackageNames: ['ghcr.io/erhardtconsulting/base-php'],
allowedVersions: '8.3.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/renovate/renovate'
],
matchUpdateTypes: ['minor', 'patch', 'digest'],
automerge: true
},
// Auto-merge github-releases
{
matchDatasources: ['github-releases'],
matchPackageNames: [
'aptible/supercronic',
'dotenvx/dotenvx',
'getsops/sops',
'mlocati/docker-php-extension-installer',
'nextcloud/server',
'rclone/rclone',
'TwiN/gatus'
],
matchUpdateTypes: ['minor', 'patch'],
automerge: true
},
// Auto-merge github-tags
{
matchDatasources: ['github-releases'],
matchPackageNames: [
'nodejs/node',
'nvm-sh/nvm'
],
matchUpdateTypes: ['minor', 'patch'],
automerge: true
}
]
}