forked from JSONbored/metagraphed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
73 lines (73 loc) · 2.39 KB
/
Copy pathrenovate.json
File metadata and controls
73 lines (73 loc) · 2.39 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":dependencyDashboard",
":semanticCommits",
":configMigration",
"helpers:pinGitHubActionDigests",
"security:minimumReleaseAgeNpm"
],
"semanticCommitType": "chore",
"semanticCommitScope": "deps",
"timezone": "America/Phoenix",
"schedule": ["before 8am on monday"],
"prConcurrentLimit": 2,
"prHourlyLimit": 1,
"branchConcurrentLimit": 3,
"labels": ["dependencies", "renovate"],
"rangeStrategy": "bump",
"rebaseWhen": "behind-base-branch",
"platformAutomerge": false,
"automerge": false,
"lockFileMaintenance": {
"enabled": true,
"schedule": ["before 8am on monday"],
"commitMessageAction": "refresh",
"commitMessageTopic": "lockfile",
"groupName": "lockfile maintenance",
"groupSlug": "lockfile-maintenance"
},
"vulnerabilityAlerts": {
"enabled": true,
"labels": ["security", "dependencies", "renovate"],
"schedule": ["at any time"]
},
"packageRules": [
{
"description": "Group all non-major GitHub Actions changes into one reviewable CI PR.",
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["digest", "pinDigest", "patch", "minor"],
"groupName": "GitHub Actions non-major updates",
"groupSlug": "github-actions-non-major",
"addLabels": ["ci"],
"commitMessageTopic": "github actions"
},
{
"description": "Keep major GitHub Actions changes isolated and dashboard-approved.",
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["major"],
"dependencyDashboardApproval": true,
"addLabels": ["ci", "major"],
"commitMessageTopic": "github action"
},
{
"description": "Group non-major backend dev dependency updates.",
"matchManagers": ["npm"],
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["patch", "minor"],
"groupName": "npm dev dependency non-major updates",
"groupSlug": "npm-dev-deps-non-major",
"addLabels": ["backend"],
"commitMessageTopic": "npm dev dependencies"
},
{
"description": "Keep npm major updates isolated and dashboard-approved.",
"matchManagers": ["npm"],
"matchUpdateTypes": ["major"],
"dependencyDashboardApproval": true,
"addLabels": ["backend", "major"],
"commitMessageTopic": "npm dependency"
}
]
}