generated from ExpediaGroup/new-project
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathrenovate.json
More file actions
29 lines (29 loc) · 842 Bytes
/
renovate.json
File metadata and controls
29 lines (29 loc) · 842 Bytes
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["local>ExpediaGroup/renovate-config"],
"assignAutomerge": true,
"assigneesFromCodeOwners": true,
"semanticCommits": "disabled",
"commitMessagePrefix": "chore(repo): ",
"packageRules": [
{
"matchDepTypes": ["dependencies", "devDependencies"],
"matchUpdateTypes": ["patch", "minor"],
"groupName": "dependencies"
},
{
"matchManagers": ["custom.regex"],
"matchPackageNames": ["bun"],
"groupName": "dependencies"
}
],
"customManagers": [
{
"customType": "regex",
"managerFilePatterns": ["package.json"],
"matchStrings": ["\"packageManager\":\\s*\"(?<depName>bun)@(?<currentValue>[\\d.]+)\""],
"datasourceTemplate": "npm",
"versioningTemplate": "semver"
}
]
}