-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmain.json
More file actions
50 lines (50 loc) · 1.62 KB
/
Copy pathmain.json
File metadata and controls
50 lines (50 loc) · 1.62 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
{
"labels": ["renovate"],
"extends": ["config:recommended", "helpers:pinGitHubActionDigests"],
"major": {
"dependencyDashboardApproval": true
},
"rebaseWhen": "conflicted",
"branchConcurrentLimit": 5,
"prConcurrentLimit": 5,
"prCreation": "not-pending",
"internalChecksFilter": "strict",
"dependencyDashboard": true,
"minimumReleaseAge": "7 days",
"minimumReleaseAgeBehaviour": "timestamp-optional",
"lockFileMaintenance": {
"enabled": true,
"extends": ["schedule:weekly"],
"automerge": true
},
"packageRules": [
{
"description": "Auto-merge minor/patch/pin/digest updates for non-0.x deps.",
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"matchCurrentVersion": "!/^0/",
"automerge": true
},
{
"description": "Hold 0.x minor/patch updates for manual review (semver pre-1.0 instability).",
"matchCurrentVersion": "/^0\\./",
"matchUpdateTypes": ["minor", "patch"],
"dependencyDashboardApproval": true
},
{
"description": "Group all GitHub Actions updates and auto-merge.",
"groupName": "GitHub Actions",
"matchManagers": ["github-actions"],
"automerge": true
},
{
"description": "Generic @types/* bucket. Consumer repos may override for specific framework groups (e.g. @types/react with React).",
"groupName": "types",
"matchPackageNames": ["@types/**"]
},
{
"description": "Major upgrades of node, pnpm, and typescript require explicit dashboard approval.",
"matchPackageNames": ["node", "pnpm", "typescript"],
"dependencyDashboardApproval": true
}
]
}