-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathrenovate.json
32 lines (32 loc) · 1.04 KB
/
renovate.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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:base", ":semanticCommits", "schedule:monthly"],
"packageRules": [
{
"description": "Require dashboard approval for major updates",
"matchUpdateTypes": ["major"],
"dependencyDashboardApproval": true
},
{
"description": "Update codeowners-generator references in Markdown files",
"matchPackageNames": ["codeowners-generator"],
"matchPaths": [".md"],
"commitMessageTopic": "references to {{{depName}}}",
"additionalBranchPrefix": "docs-",
"semanticCommitType": "docs"
},
{
"description": "Use ci commit type for Github Actions",
"matchManagers": ["github-actions"],
"semanticCommitType": "ci"
}
],
"regexManagers": [
{
"description": "Update codeowners-generator references in Markdown files",
"fileMatch": ["\\.md$"],
"matchStrings": ["\"(?<depName>codeowners-generator)\": \"(?<currentValue>.*?)\""],
"datasourceTemplate": "npm"
}
]
}