-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.json
More file actions
84 lines (84 loc) · 2.63 KB
/
Copy pathdefault.json
File metadata and controls
84 lines (84 loc) · 2.63 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
80
81
82
83
84
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": "Shared Renovate preset for getnodus repositories.",
"extends": [
"config:recommended",
"helpers:pinGitHubActionDigests",
":dependencyDashboard",
":semanticCommits",
"docker:enableMajor",
":rebaseStalePrs"
],
"minimumReleaseAge": "12 hours",
"prHourlyLimit": 0,
"prConcurrentLimit": 10,
"rebaseWhen": "behind-base-branch",
"constraintsFiltering": "strict",
"labels": ["dependencies"],
"vulnerabilityAlerts": {
"enabled": true,
"labels": ["security"],
"automerge": false
},
"osvVulnerabilityAlerts": true,
"packageRules": [
{
"description": "Auto-merge non-major updates once CI is green and the short stability delay clears.",
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"automerge": true,
"automergeType": "pr",
"automergeStrategy": "squash",
"platformAutomerge": false
},
{
"description": "Batch all non-major npm updates into a single PR to avoid lockfile conflicts.",
"matchManagers": ["npm"],
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"groupName": "npm non-major"
},
{
"description": "Batch all non-major pnpm updates into a single PR.",
"matchManagers": ["pnpm"],
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"groupName": "pnpm non-major"
},
{
"description": "Bundle all GitHub Actions updates into one PR.",
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"groupName": "github-actions"
},
{
"description": "Group Docker base image updates.",
"matchManagers": ["dockerfile"],
"matchUpdateTypes": ["minor", "patch", "digest"],
"groupName": "docker non-major",
"automerge": true
},
{
"description": "Group Python dep updates.",
"matchManagers": ["pip_requirements", "pyproject"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "python non-major",
"automerge": true
},
{
"description": "Group the Remotion monorepo packages.",
"matchPackageNames": ["remotion", "@remotion/*"],
"groupName": "remotion"
},
{
"description": "Major updates always require manual review.",
"matchUpdateTypes": ["major"],
"automerge": false,
"addLabels": ["major-update"]
},
{
"description": "Node.js engine updates — manual review only.",
"matchPackageNames": ["node"],
"matchManagers": ["nodenv", "nvm"],
"automerge": false,
"addLabels": ["major-update"]
}
]
}