-
Notifications
You must be signed in to change notification settings - Fork 1
/
renovate.json5
74 lines (67 loc) · 1.9 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
// -*- mode: jsonc -*-
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
":dependencyDashboard",
"config:best-practices",
":disablePrControls",
":semanticCommits",
":semanticCommitTypeAll(ci)",
":automergeAll",
],
// Disabled for now because it removes comments and messes the indentation
"configMigration": false,
"reviewers": ["berbiche"],
"enabledManagers": ["kustomize", "github-actions", "nix", "regex"],
"prHourlyLimit": 5,
"nix": {
"enabled": true,
"lockFileMaintenance": {
"enabled": true,
},
},
"regexManagers": [
{
"fileMatch": ["^k8s/traefik/base/resources/helm-chart-values\\.yaml$"],
"matchStrings": [
"image:\\s+(?<depName>quay\\.io/[a-zA-Z0-9/\\-_]+):(?<currentValue>[^\\s]+)",
],
"autoReplaceStringTemplate": "image: {{{depName}}}:{{{newValue}}}",
"datasourceTemplate": "docker",
},
],
"packageRules": [
{
// Excludes qBittorrent because it needs to be handled separately
"description": "Group dependencies for the Mediaserver namespace & pin digest updates",
"matchFileNames": ["k8s/mediaserver/**"],
"matchManagers": ["kustomize"],
// "matchUpdateTypes": ["patch", "minor"],
"excludeDepPatterns": ["qbittorrent$"],
"groupName": "mediaserver packages",
"pinDigests": true,
"major": {
"enabled": false,
},
},
{
"description": "Nix Flakes updates",
"matchFileNames": ["^flake\\.nix$", "^flake\\.lock$",],
"matchManagers": ["nix"],
"groupName": "Nix packages",
"schedule": ["every weekend"],
},
{
"description": "qBittorrent updates",
"matchDepPatterns": ["qbittorrent$"],
"matchManagers": ["kustomize"],
"major": {
"enabled": false,
},
"minor": {
"enabled": true,
},
"pinDigests": true,
}
],
}