-
Notifications
You must be signed in to change notification settings - Fork 188
Expand file tree
/
Copy pathrenovate.json
More file actions
67 lines (67 loc) · 1.82 KB
/
Copy pathrenovate.json
File metadata and controls
67 lines (67 loc) · 1.82 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
66
67
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"helpers:pinGitHubActionDigests"
],
"commitBody": "Generated by renovateBot",
"prConcurrentLimit": 5,
"minimumReleaseAge": "2 weeks",
"vulnerabilityAlerts": {
"enabled": true,
"minimumReleaseAge": "2 days",
"prConcurrentLimit": 0,
"prHourlyLimit": 0,
"schedule": []
},
"packageRules": [
{
"matchManagers": ["github-actions"],
"groupName": "github workflows"
},
{
"matchManagers": ["dockerfile"],
"groupName": "docker deps"
},
{
"matchManagers": ["npm"],
"groupName": "npm deps"
},
{
"description": "First-party deps, no need to quarantine new releases",
"matchManagers": ["gomod"],
"groupName": "livekit deps",
"matchPackageNames": [
"github.com/livekit{/,}**"
],
"minimumReleaseAge": null
},
{
"description": "The go directive is the module minimum, owned by the go toolchain and dependency requirements; the build toolchain is pinned in .go-version instead",
"matchManagers": ["gomod"],
"matchDepTypes": ["golang"],
"enabled": false
},
{
"description": "Build toolchain pin (.go-version): a patch bump (stays on the current minor) and a minor bump each get their own approvable PR",
"matchDatasources": ["golang-version"],
"separateMinorPatch": true
}
],
"customManagers": [
{
"customType": "regex",
"managerFilePatterns": [
"/(^|/)\\.go-version$/"
],
"matchStrings": ["^(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"datasourceTemplate": "golang-version",
"depNameTemplate": "golang"
}
],
"postUpdateOptions": [
"gomodTidy"
],
"schedule": ["on sunday"],
"updateNotScheduled": false
}