-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.json
More file actions
52 lines (52 loc) · 1.56 KB
/
Copy pathdefault.json
File metadata and controls
52 lines (52 loc) · 1.56 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"timezone": "Europe/Zurich",
"schedule": ["before 5:00am"],
"assignees": ["ravage84", "neluxx"],
"baseBranchPatterns": ["cakephp-4.x", "cakephp-5.x"],
"dependencyDashboard": true,
"dependencyDashboardApproval": true,
"constraintsFiltering": "strict",
"lockFileMaintenance": {
"enabled": true,
"automerge": true,
"dependencyDashboardApproval": false
},
"packageRules": [
{
"description": "Ignore minor and patch updates entirely. Only majors reach the dashboard",
"matchUpdateTypes": ["minor", "patch"],
"enabled": false
},
{
"description": "PHP version of the cakephp-4.x branch",
"matchBaseBranches": ["cakephp-4.x"],
"constraints": { "php": "^7.4 | ^8.0" }
},
{
"description": "PHP version of the cakephp-5.x branch",
"matchBaseBranches": ["cakephp-5.x"],
"constraints": { "php": "^8.2" }
},
{
"description": "CakePHP version of the cakephp-4.x branch",
"matchPackageNames": ["cakephp/cakephp"],
"allowedVersions": "<5.0.0",
"matchBaseBranches": ["cakephp-4.x"]
},
{
"description": "CakePHP version of the cakephp-5.x branch",
"matchPackageNames": ["cakephp/cakephp"],
"allowedVersions": "<6.0.0",
"matchBaseBranches": ["cakephp-5.x"]
}
],
"vulnerabilityAlerts": {
"enabled": true,
"dependencyDashboardApproval": false,
"automerge": false,
"labels": ["security"],
"rangeStrategy": "bump"
}
}