-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrenovate.json
More file actions
93 lines (93 loc) · 2.82 KB
/
Copy pathrenovate.json
File metadata and controls
93 lines (93 loc) · 2.82 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"docker:enableMajor",
":semanticCommits",
":maintainLockFilesWeekly"
],
"description": "Renovate configuration for aiometadata-docker",
"timezone": "Europe/Paris",
"schedule": [
"before 6am on Monday"
],
"labels": ["dependencies", "renovate"],
"prHourlyLimit": 2,
"prConcurrentLimit": 5,
"platformAutomerge": true,
"packageRules": [
{
"description": "Node.js Alpine base image - auto-merge minor/patch",
"matchDatasources": ["docker"],
"matchPackageNames": ["node"],
"matchUpdateTypes": ["minor", "patch", "digest"],
"automerge": true,
"automergeType": "pr",
"automergeStrategy": "squash",
"groupName": "node-alpine",
"groupSlug": "node-alpine",
"commitMessagePrefix": "chore(docker):",
"commitMessageTopic": "Node.js Alpine base image"
},
{
"description": "Node.js Alpine major updates - require manual review",
"matchDatasources": ["docker"],
"matchPackageNames": ["node"],
"matchUpdateTypes": ["major"],
"automerge": false,
"labels": ["dependencies", "major", "breaking"],
"commitMessagePrefix": "chore(docker):",
"commitMessageTopic": "Node.js Alpine base image"
},
{
"description": "GitHub Actions - group and auto-merge",
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["minor", "patch"],
"automerge": true,
"automergeType": "pr",
"automergeStrategy": "squash",
"groupName": "github-actions",
"groupSlug": "gha",
"commitMessagePrefix": "chore(ci):",
"schedule": ["before 6am on Monday"]
},
{
"description": "GitHub Actions major - manual review",
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["major"],
"automerge": false,
"labels": ["dependencies", "major", "ci"]
},
{
"description": "Redis base image - auto-merge",
"matchDatasources": ["docker"],
"matchPackageNames": ["redis"],
"matchUpdateTypes": ["minor", "patch"],
"automerge": true,
"automergeType": "pr",
"groupName": "redis",
"commitMessagePrefix": "chore(docker):"
}
],
"dockerfile": {
"fileMatch": ["(^|/)Dockerfile$", "(^|/)Dockerfile\\.[^/]*$"]
},
"customManagers": [
{
"customType": "regex",
"description": "Update node version in Dockerfile FROM statements",
"fileMatch": ["^Dockerfile$"],
"matchStrings": [
"FROM\\s+node:(?<currentValue>[\\d.]+-alpine)\\s+AS"
],
"datasourceTemplate": "docker",
"depNameTemplate": "node",
"versioningTemplate": "docker"
}
],
"vulnerabilityAlerts": {
"enabled": true,
"labels": ["security"]
},
"osvVulnerabilityAlerts": true
}