-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathrenovate.json
76 lines (76 loc) · 1.8 KB
/
renovate.json
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":semanticCommits",
":semanticPrefixFixDepsChoreOthers",
":label(renovate)"
],
"assignees": [
"@bassco"
],
"vulnerabilityAlerts": {
"labels": [
"security"
],
"automerge": false
},
"dependencyDashboard": true,
"configMigration": true,
"commitMessageLowerCase": "auto",
"timezone": "Europe/Berlin",
"lockFileMaintenance": {
"enabled": true,
"recreateWhen": "always",
"rebaseWhen": "behind-base-branch",
"branchTopic": "lock-file-maintenance",
"commitMessageAction": "lock file maintenance",
"commitMessageTopic": "dependency {{ lowercase depName}}",
"commitMessagePrefix": "fix(cargo):",
"schedule": [
"before 4am on monday"
],
"groupName": null,
"prBodyDefinitions": {
"Change": "All locks refreshed"
}
},
"packageRules": [
{
"description": "Automatically merge minor and patch-level updates without creating a PR",
"matchUpdateTypes": [
"minor",
"patch",
"digest"
],
"automerge": false,
"automergeType": "branch"
},
{
"description": "Causes the bot to create a PR (and thus, an email notification), whenever there is a new major version",
"matchUpdateTypes": [
"major"
],
"automerge": false,
"prCreation": "not-pending"
},
{
"matchManagers": [
"github-actions"
],
"automerge": true,
"automergeType": "branch",
"semanticCommitType": "ci",
"semanticCommitScope": "workflow"
},
{
"matchManagers": [
"dockerfile"
],
"semanticCommitScope": "docker",
"automerge": false
}
],
"prConcurrentLimit": 5,
"prHourlyLimit": 3
}