-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.json
More file actions
79 lines (79 loc) · 2.31 KB
/
default.json
File metadata and controls
79 lines (79 loc) · 2.31 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
{
"extends": [
"config:recommended",
":semanticCommits",
"group:monorepos",
"github>nsheaps/renovate-config//presets/extra-groupings.json5"
],
"timezone": "America/New_York",
"configMigration": true,
"automerge": true,
"automergeType": "pr",
"automergeSchedule": "after 10am and before 4pm every weekday",
"automergeStrategy": "squash",
"minimumReleaseAge": "30 days",
"internalChecksAsSuccess": true,
"prCreation": "not-pending",
"prNotPendingHours": 3,
"prHourlyLimit": 3,
"prConcurrentLimit": 8,
"assignees": ["nsheaps"],
"reviewers": ["nsheaps"],
"dependencyDashboardHeader": "This issue lists Renovate updates and detected dependencies. [Run Logs](https://developer.mend.io/github/gathertown/gather-town-v2)",
"osvVulnerabilityAlerts": true,
"dependencyDashboardOSVVulnerabilitySummary": "all",
"rebaseWhen": "conflicted",
"packageRules": [
{
"matchManagers": ["npm"],
"rangeStrategy": "bump"
},
{
"matchManagers": ["github-actions"],
"matchPackageNames": ["coana-tech/coana-action"],
"schedule": "on the first day of the month",
"additionalReviewers": ["rob-gather"]
},
{
"matchManagers": ["circleci"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "circleci minor and patch updates",
"enabled": true
},
{
"matchPackageNames": ["node"],
"matchManagers": ["dockerfile"],
"minimumReleaseAge": "7 days"
},
{
"matchPackageNames": ["node"],
"matchManagers": ["mise", "custom.regex"],
"minimumReleaseAge": "8 days"
},
{
"matchCurrentAge": "> 2 years",
"prPriority": 3
},
{
"matchUpdateTypes": ["major", "minor"],
"prPriority": 4
},
{
"matchUpdateTypes": ["replacement"],
"prPriority": 5
}
],
"customManagers": [
{
"customType": "regex",
"description": "Update node engine in package.json if it exists",
"managerFilePatterns": ["/(^|/)package.json$/"],
"datasourceTemplate": "node-version",
"versioningTemplate": "node",
"depNameTemplate": "node",
"matchStrings": [
"( ){1,2}\"engines\":\\s*\\{[^\\n]*\\n(( ){1,2}[^\\n]*\\n)*( ){1,2}\"node\":\\s*\"(?<currentValue>[^\"]+)\",?\\n(( ){1,2}[^\\n]*\\n)*( ){1,2}\\},\\n"
]
}
]
}