-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.jsonc
More file actions
39 lines (36 loc) · 1.43 KB
/
Copy pathrenovate.jsonc
File metadata and controls
39 lines (36 loc) · 1.43 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
// -*- mode: jsonc -*-
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"minimumReleaseAge": "2 days",
"schedule": ["on the 15th day of the month"],
"updateNotScheduled": false,
"git-submodules": {
"enabled": true
},
// https://docs.renovatebot.com/presets-group/#groupallnonmajor
"packageRules": [
{
"description": "Auto-merge packageManager minor/patch updates",
// The packageManager field (even for pnpm) is extracted by the npm manager,
// not a separate "pnpm" manager. See https://docs.renovatebot.com/modules/manager/npm/#dependency-types
"matchManagers": ["npm"],
"matchDepTypes": ["packageManager"],
"matchUpdateTypes": ["minor", "patch"],
"automerge": true
},
{
"groupName": "all non-major devDependencies",
"groupSlug": "all-minor-patch",
// A negation-only pattern matches everything except what's negated.
"matchPackageNames": [
"!pnpm", // pnpm is handled seperately in the first packageRule above.
"!js-yaml" // js-yaml v5 has stricter YAML 1.2 compliance that breaks spec-test fixtures.
],
"matchUpdateTypes": ["minor", "patch"],
// Force group-style commit message even when only one dep is updated,
// avoiding the single-dep template that appends "to vX.Y.Z".
"commitMessageTopic": "all non-major devDependencies"
}
]
}