-
Notifications
You must be signed in to change notification settings - Fork 37
/
renovate-config.json
35 lines (35 loc) · 1.55 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": "Default configuration for repositories in the Laminas 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:daily"]},
"platformAutomerge": true,
"prFooter": "[Read more information](https://github.com/laminas/.github/blob/main/RENOVATE.md) about the use of [Renovate Bot](https://github.com/renovatebot/renovate) within Laminas.",
"rangeStrategy": "replace",
"rollbackPrs": true,
"packageRules": [
{"matchDepTypes": ["require"], "rangeStrategy": "widen"},
{"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"}
],
"vulnerabilityAlerts": {
"extends": [":automergeDisabled", ":automergePr", ":labels(Awaiting Maintainer Response, security)"],
"rangeStrategy": "bump"
}
}