-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
65 lines (65 loc) · 1.89 KB
/
Copy pathrenovate.json
File metadata and controls
65 lines (65 loc) · 1.89 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"helpers:pinGitHubActionDigests",
":rebaseStalePrs",
"group:all"
],
"reviewers": ["martinfrancois"],
"labels": ["dependencies"],
"rangeStrategy": "replace",
"minimumReleaseAge": "7 days",
"minimumReleaseAgeBehaviour": "timestamp-required",
"internalChecksFilter": "strict",
"automerge": false,
"vulnerabilityAlerts": {
"enabled": true,
"labels": ["security"]
},
"customManagers": [
{
"customType": "regex",
"managerFilePatterns": [
"/^\\.github/workflows/(?:commitlint|release-please)\\.yml$/",
"/^scripts/(?:commitlint_release_pr|install_commitlint)\\.sh$/"
],
"matchStrings": [
"(?:\\s+)(?<depName>@commitlint/(?:cli|config-conventional))@(?<currentValue>\\d+\\.\\d+\\.\\d+)"
],
"datasourceTemplate": "npm",
"versioningTemplate": "semver"
},
{
"customType": "regex",
"managerFilePatterns": [
"/^\\.github/workflows/(?:ci|commitlint|publish-tessl|release-please|skill-review)\\.yml$/"
],
"matchStrings": [
"version:\\s*[\"']?(?<currentValue>\\d+\\.\\d+\\.\\d+)[\"']?"
],
"depNameTemplate": "tessl-cli",
"datasourceTemplate": "npm",
"packageNameTemplate": "tessl",
"versioningTemplate": "semver"
}
],
"packageRules": [
{
"description": "Require review for GitHub Actions and pinned action digest updates",
"matchManagers": ["github-actions"],
"automerge": false
},
{
"description": "Require review for workflow-managed tooling such as Tessl CLI and commitlint",
"matchManagers": ["custom.regex"],
"automerge": false
},
{
"matchUpdateTypes": ["major"],
"automerge": false,
"dependencyDashboardApproval": true,
"addLabels": ["major-update"]
}
]
}