-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathrenovate.json
More file actions
59 lines (59 loc) · 1.93 KB
/
Copy pathrenovate.json
File metadata and controls
59 lines (59 loc) · 1.93 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":dependencyDashboard",
":semanticCommits",
":semanticCommitTypeAll(chore)",
":semanticCommitScope(deps)",
"helpers:pinGitHubActionDigests"
],
"assignees": ["JSONbored"],
"branchPrefix": "renovate/",
"dependencyDashboardTitle": "Dependency Dashboard",
"enabledManagers": ["npm", "github-actions"],
"minimumReleaseAge": "3 days",
"packageRules": [
{
"groupName": "npm minor and patch dependencies",
"groupSlug": "npm-minor-patch",
"matchManagers": ["npm"],
"matchUpdateTypes": ["minor", "patch"],
"semanticCommitScope": "deps"
},
{
"dependencyDashboardApproval": true,
"matchManagers": ["npm"],
"matchUpdateTypes": ["major"],
"semanticCommitScope": "deps"
},
{
"commitMessageTopic": "GitHub Actions",
"groupName": "GitHub Actions",
"groupSlug": "github-actions",
"matchManagers": ["github-actions"],
"semanticCommitScope": "actions"
},
{
"enabled": false,
"matchDepTypes": ["engines"]
}
],
"postUpdateOptions": ["npmDedupe"],
"prBodyNotes": [
"Dependency PRs must keep `npm run test:ci` passing. The 97% coverage requirement is enforced as Codecov patch coverage on changed lines (codecov/patch), so dependency-only bumps satisfy it without new tests.",
"GitHub Actions updates must remain SHA-pinned.",
"Renovate is the sole dependency and security-update bot for this repo; GitHub Dependabot security updates are disabled to avoid duplicate PRs (e.g. the two hono advisory PRs)."
],
"prConcurrentLimit": 5,
"prHourlyLimit": 2,
"rangeStrategy": "bump",
"rebaseWhen": "behind-base-branch",
"schedule": ["before 6am on monday"],
"separateMajorMinor": true,
"separateMultipleMajor": true,
"timezone": "America/Phoenix",
"vulnerabilityAlerts": {
"enabled": true
}
}