-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathrenovate.json
More file actions
61 lines (61 loc) · 1.93 KB
/
Copy pathrenovate.json
File metadata and controls
61 lines (61 loc) · 1.93 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"helpers:pinGitHubActionDigestsToSemver",
":configMigration",
":maintainLockFilesWeekly"
],
"timezone": "Europe/Berlin",
"baseBranchPatterns": [
"main",
"/^\\d+\\.\\d+$/"
],
"rebaseWhen": "conflicted",
"prHourlyLimit": 2,
"prConcurrentLimit": 10,
"dependencyDashboard": true,
"labels": ["type/dependencies"],
"platformAutomerge": true,
"osvVulnerabilityAlerts": true,
"dependencyDashboardOSVVulnerabilitySummary": "all",
"vulnerabilityAlerts": {
"enabled": true,
"labels": ["type/security", "type/dependencies"]
},
"lockFileMaintenance": {
"enabled": true,
"automerge": true,
"schedule": ["before 6am on monday"]
},
"packageRules": [
{
"description": "Group GitHub Actions updates per branch into one PR, automerge",
"matchManagers": ["github-actions"],
"groupName": "github-actions",
"automerge": true
},
{
"description": "Automerge minor and patch updates after they have settled",
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"automerge": true
},
{
"description": "Do not update the PHP platform requirement in composer.json",
"matchManagers": ["composer"],
"matchDepNames": ["php"],
"enabled": false
},
{
"description": "Do not suggest major updates for Composer dependencies",
"matchManagers": ["composer"],
"matchUpdateTypes": ["major"],
"enabled": false
},
{
"description": "Bump composer.json ranges when updating dependencies",
"matchManagers": ["composer"],
"rangeStrategy": "bump"
}
]
}