-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
41 lines (41 loc) · 1.27 KB
/
renovate.json
File metadata and controls
41 lines (41 loc) · 1.27 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>platform-engineering-org/.github",
"schedule:daily"
],
"baseBranchPatterns": [
"main",
"/^release.*/"
],
"ignorePresets": [
"group:all"
],
"description": "Config to group Docker image version and digest updates into a single pull request.",
"packageRules": [
{
"description": "Patch and digest updates",
"matchUpdateTypes": ["patch", "digest"],
"groupName": "{{depName}} updates",
"automerge": true,
"platformAutomerge": true
},
{
"description": "Restrict version updates on release branches dynamically (major version only)",
"matchBaseBranches": ["/^release-\\d+$/"],
"allowedVersions": "/^$1(\\.|$)/",
"groupName": "Release branch version updates ({{baseBranch}})",
"matchPackageNames": []
},
{
"description": "Always allow digest updates on release branches",
"matchBaseBranches": ["/^release-\\d+$/"],
"matchUpdateTypes": ["digest"],
"groupName": "Release branch digest updates ({{baseBranch}})"
}
],
"separateMultipleMajor": true,
"pruneStaleBranches": false,
"pinDigests": true,
"timezone": "America/New_York"
}