-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
75 lines (67 loc) · 2.27 KB
/
renovate.json
File metadata and controls
75 lines (67 loc) · 2.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
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"timezone": "UTC",
"schedule": ["before 6am on monday"],
"labels": ["dependencies"],
"assigneesFromCodeOwners": true,
"reviewersFromCodeOwners": true,
"packageRules": [
{
"description": "Python dependencies - group minor and patch updates",
"matchManagers": ["pip_requirements"],
"groupName": "Python dependencies",
"matchUpdateTypes": ["minor", "patch"],
"automerge": false
},
{
"description": "Python major version updates - separate PRs with high priority",
"matchManagers": ["pip_requirements"],
"matchUpdateTypes": ["major"],
"addLabels": ["major-update"],
"prPriority": 10,
"automerge": false
},
{
"description": "Docker base image updates",
"matchManagers": ["dockerfile"],
"matchPackageNames": ["python"],
"groupName": "Docker Python base image",
"automerge": false,
"addLabels": ["docker"]
},
{
"description": "Docker Compose version updates",
"matchManagers": ["docker-compose"],
"groupName": "Docker Compose dependencies",
"automerge": false,
"addLabels": ["docker"]
}
],
"pip_requirements": {
"fileMatch": ["(^|/)requirements.*\\.txt$"]
},
"prConcurrentLimit": 3,
"prHourlyLimit": 2,
"commitMessageTopic": "{{depName}}",
"commitMessageAction": "update",
"commitMessageExtra": "to {{#if isPinDigest}}{{{newDigestShort}}}{{else}}{{#if isMajor}}{{prettyNewMajor}}{{else}}{{#if isSingleVersion}}{{prettyNewVersion}}{{else}}{{#if newValue}}{{{newValue}}}{{else}}{{{newDigestShort}}}{{/if}}{{/if}}{{/if}}{{/if}}",
"prTitle": "{{#if isPin}}Pin{{else}}Update{{/if}} {{depName}} {{#if isMajor}}(major){{else}}{{#if isMinor}}(minor){{else}}{{#if isPatch}}(patch){{/if}}{{/if}}{{/if}}",
"prBodyTemplate": "{{{header}}}{{{table}}}{{{notes}}}{{{changelogs}}}{{{configDescription}}}{{{controls}}}{{{footer}}}",
"enabledManagers": [
"dockerfile",
"docker-compose",
"pip_requirements"
],
"ignorePaths": [
"**/node_modules/**",
"**/bower_components/**",
"**/vendor/**",
"**/.venv/**",
"**/venv/**"
],
"platformAutomerge": false,
"requiredStatusChecks": null
}