forked from microsoft/beachball
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json5
33 lines (28 loc) · 1.07 KB
/
renovate.json5
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
// Available options:
// https://docs.renovatebot.com/configuration-options/
// M365 presets:
// https://github.com/microsoft/m365-renovate-config
// NOTE: Renovate only allows comments in .json5 files, but this isn't well-supported by
// Prettier + VS Code. Workaround is to configure tools to treat the file as JSONC
// (in .prettierrc and .vscode/settings.json).
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>microsoft/m365-renovate-config:beachballLibraryRecommended",
"github>microsoft/m365-renovate-config:disableEsmVersions",
"github>microsoft/m365-renovate-config:groupMore",
"github>microsoft/m365-renovate-config:groupTypes",
"github>microsoft/m365-renovate-config:keepFresh",
"github>microsoft/m365-renovate-config:restrictNode(14)"
],
"labels": ["renovate"],
"reviewers": ["ecraig12345", "kenotron"],
"reviewersSampleSize": 1,
"packageRules": [
{
"matchPackageNames": ["workspace-tools"],
"matchUpdateTypes": ["major", "minor"],
"dependencyDashboardApproval": false
}
]
}