forked from datum-cloud/datum.net
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
39 lines (39 loc) · 1.24 KB
/
renovate.json
File metadata and controls
39 lines (39 loc) · 1.24 KB
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"lockFileMaintenance": {
"enabled": true
},
"regexManagers": [
{
"description": "Update operator versions in API docs config",
"fileMatch": ["^\\.api-docs-config\\.yaml$"],
"matchStrings": [
"repo:\\s+(?<depName>[^\\n]+)\\n\\s+version:\\s+(?<currentValue>v[0-9]+\\.[0-9]+\\.[0-9]+)"
],
"datasourceTemplate": "github-releases",
"depNameTemplate": "datum-cloud/{{{depName}}}"
}
],
"packageRules": [
{
"matchManagers": ["npm"],
"updateLockFiles": true,
"rangeStrategy": "bump",
"groupName": "npm dependencies"
},
{
"description": "Group API documentation operator updates together",
"matchManagers": ["regex"],
"matchFileNames": [".api-docs-config.yaml"],
"groupName": "API documentation operators",
"automerge": false,
"reviewers": ["team:datum-cloud"],
"schedule": ["before 3am on Monday"],
"prBodyNotes": [
"This PR updates the operator versions used for API documentation generation.",
"API reference documentation will be automatically regenerated by the GitHub Actions workflow."
]
}
]
}