-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrenovate.json5
59 lines (59 loc) · 2 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
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
{
extends: ['config:base'],
dependencyDashboard: false,
// https://renovatebot.com/docs/configuration-options/#commitbodytable
commitBodyTable: true,
// https://renovatebot.com/docs/configuration-options/#ignoredeps
ignoreDeps: [
// Ignore all package dependencies, we only want these updated in batches as part of new releases.
'stylelint',
'stylelint-a11y',
'stylelint-config-standard',
'stylelint-declaration-strict-value',
'stylelint-order',
'stylelint-scss',
],
// https://renovatebot.com/docs/configuration-options/#labels
labels: ['enhancement'],
// https://renovatebot.com/docs/configuration-options/#prcreation
prCreation: 'not-pending',
// Use shorter commit messages to account for long dependency names.
// https://docs.renovatebot.com/configuration-options/#commitmessagetopic
commitMessageTopic: '{{depName}}',
// https://renovatebot.com/docs/configuration-options/#prbodycolumns
prBodyColumns: ['Package', 'Update', 'Type', 'Change'],
// https://renovatebot.com/docs/configuration-options/#rebasestaleprs
rebaseStalePrs: true,
// Silently merge updates without PRs
automergeType: 'branch',
// https://renovatebot.com/docs/configuration-options/#schedule
schedule: ['every weekend'],
// Limit the number of consecutive PRs
prHourlyLimit: 2,
node: {
major: {
enabled: true,
},
// https://renovatebot.com/docs/node/#configuring-support-policy
supportPolicy: ['current'],
},
packageRules: [
{ packageNames: ['prettier'], groupName: 'prettier', automerge: true },
{ packageNames: ['jest'], groupName: 'jest', automerge: true },
{ packageNames: ['eslint'], groupName: 'eslint', automerge: true },
{
packageNames: ['stylelint-find-new-rules'],
groupName: 'stylelint-find-new-rules',
automerge: true,
},
{
packagePatterns: ['^actions/', '^github/'],
groupName: 'actions',
automerge: true,
},
{
matchDepTypes: ['peerDependencies'],
enabled: false,
},
],
}