-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json5
38 lines (36 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
34
35
36
37
38
{
dependencyDashboardLabels: ['effort | ongoing', 'scope | dependencies'],
dependencyDashboardOSVVulnerabilitySummary: 'all',
extends: [
'config:recommended',
'default:automergeDigest',
'default:automergeMinor',
'default:combinePatchMinorReleases',
'default:dependencyDashboard',
'default:docker',
'default:enableVulnerabilityAlerts',
'default:maintainLockFilesWeekly',
'default:prHourlyLimit4',
],
ignorePaths: ['/node_modules/'],
// only rebase merge requests when they become conflicted
// see: https://docs.renovatebot.com/configuration-options/#rebasewhen
rebaseWhen: 'conflicted',
// https://docs.renovatebot.com/configuration-options/#stopupdatinglabel
stopUpdatingLabel: 'renovate | stop update',
packageRules: [
// @dnd-kit monorepo
{
matchPackagePatterns: '^@dnd-kit',
},
// @nextui monorepo
{
matchPackagePatterns: '^@nextui-org',
},
// framer-motion not patch releases (rate-limiting)
{
matchPackageNames: ['framer-motion'],
excludeUpdateTypes: ['patch'],
},
],
}