-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json5
50 lines (50 loc) · 1.55 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
{
// all options: see https://docs.renovatebot.com/configuration-options/
$schema: 'https://docs.renovatebot.com/renovate-schema.json',
// configuration presets to use or extend
extends: ['config:base', 'group:symfony', 'docker:enableMajor'],
// ignore versions with unstable SemVer
ignoreUnstable: true,
// when is Renovate allowed to run
schedule: ['at any time'],
// enforce enablement of semantic commits
semanticCommits: 'enabled',
// separate major or minor branches if both updates exist
separateMajorMinor: true,
// separate minor or patch branches if both updates exist
separateMinorPatch: true,
// separate branches for multiple major updates
separateMultipleMajor: true,
// rules for matching package names
// see https://docs.renovatebot.com/configuration-options/#packagerules
packageRules: [
{
matchManagers: ['composer'],
rangeStrategy: 'update-lockfile',
},
// group all docker updates together
{
matchManagers: ['docker-compose', 'dockerfile'],
groupName: 'docker',
},
// group other updates with patch level
{
matchManagers: ['composer'],
matchUpdateTypes: ['patch'],
groupName: 'composer (patch)',
},
{
matchManagers: ['npm'],
matchUpdateTypes: ['patch'],
groupName: 'npm (patch)',
},
{
matchPackagePatterns: ['^doctrine'],
groupName: 'doctrine',
},
],
// required for Symfony Flex integration
// see https://github.com/renovatebot/renovate/pull/11990
allowPlugins: true,
ignorePlugins: false,
}