-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
67 lines (67 loc) · 1.95 KB
/
Copy pathrenovate.json
File metadata and controls
67 lines (67 loc) · 1.95 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":dependencyDashboard",
":semanticCommits",
"schedule:weekly"
],
"automerge": true,
"automergeType": "pr",
"automergeStrategy": "squash",
"minimumReleaseAge": "3 days",
"internalChecksFilter": "strict",
"prCreation": "immediate",
"prConcurrentLimit": 3,
"commitMessagePrefix": "chore(deps): ",
"packageRules": [
{
"description": "Enable and label Rust updates",
"matchManagers": ["cargo"],
"enabled": true,
"labels": ["dependencies", "rust"]
},
{
"description": "Automatically merge minor and patch updates for Rust dependencies",
"matchManagers": ["cargo"],
"matchUpdateTypes": ["minor", "patch"],
"automerge": true,
"automergeType": "pr",
"automergeStrategy": "squash"
},
{
"description": "Manage pre-commit hook updates",
"matchManagers": ["pre-commit"],
"labels": ["dependencies", "pre-commit"],
"automerge": false
},
{
"description": "Require manual approval for major version updates",
"matchUpdateTypes": ["major"],
"automerge": false
},
{
"description": "Group all non-major updates together",
"matchUpdateTypes": ["minor", "patch"],
"groupName": "non-major dependencies",
"groupSlug": "non-major-deps"
},
{
"description": "Disable updates for dev dependencies from being auto-merged",
"matchDepTypes": ["dev-dependencies"],
"automerge": false,
"labels": ["type: dependencies", "kind: dev-dependencies"]
},
{
"description": "Fast-track patch updates with tight constraints",
"matchUpdateTypes": ["patch"],
"groupName": "patch updates",
"schedule": ["after 10pm and before 5am every weekday", "every weekend"]
}
],
"vulnerabilityAlerts": {
"enabled": true,
"labels": ["security"],
"automerge": false
}
}