-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate-config.json
43 lines (43 loc) · 1.94 KB
/
renovate-config.json
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": "Default configuration for repositories in the LM-Commons organisation",
"extends": [
":dependencyDashboard",
":ignoreModulesAndTests",
":automergeMinor",
":automergeBranch",
":rebaseStalePrs",
":semanticCommitsDisabled",
":separateMajorReleases",
":combinePatchMinorReleases",
":enableVulnerabilityAlerts",
":timezone(UTC)",
":gitSignOff",
":label(renovate)",
"group:allNonMajor"
],
"commitBodyTable": true,
"lockFileMaintenance": {"enabled": true, "extends": ["schedule:weekly"]},
"platformAutomerge": true,
"prFooter": "[Read more information](https://github.com/lm-commons/.github/blob/master/RENOVATE.md) about the use of [Renovate Bot](https://github.com/renovatebot/renovate) within LM-Commons.",
"rangeStrategy": "replace",
"rollbackPrs": true,
"packageRules": [
{"matchDepTypes": ["require"], "rangeStrategy": "widen"},
{"matchPackagePatterns": ["^lm-commons/"], "groupSlug": "lm-commons", "groupName": "LM-Commons packages"},
{"matchPackagePatterns": ["^laminas/"], "groupSlug": "laminas", "groupName": "Laminas packages"},
{"matchPackagePatterns": ["^laminas-api-tools/"], "groupSlug": "laminas-api-tools", "groupName": "Laminas API Tools packages"},
{"matchPackagePatterns": ["^mezzio/"], "groupSlug": "mezzio", "groupName": "Mezzio packages"},
{
"matchPackageNames": ["php"],
"allowedVersions": "^8.0",
"extends": [":automergeDisabled", ":automergePr", ":label(Awaiting Maintainer Response)"],
"ignoreUnstable": false,
"groupName": "PHP"
}
],
"vulnerabilityAlerts": {
"extends": [":automergeDisabled", ":automergePr", ":labels(Awaiting Maintainer Response, security)"],
"rangeStrategy": "bump"
}
}