Skip to content

Commit e5279a8

Browse files
authored
Reduce frequency of non-essential renovate updates (#504)
1 parent 4582943 commit e5279a8

File tree

1 file changed

+24
-21
lines changed

1 file changed

+24
-21
lines changed

renovate.json

Lines changed: 24 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,34 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3-
"extends": [
4-
"config:base"
5-
],
6-
"postUpdateOptions": [
7-
"gomodTidy"
8-
],
3+
"extends": ["config:base"],
4+
"postUpdateOptions": ["gomodTidy"],
95
"commitBody": "Generated by renovateBot",
106
"packageRules": [
117
{
12-
"matchUpdateTypes": [
13-
"minor",
14-
"patch",
15-
"pin",
16-
"digest"
17-
],
18-
"automerge": false
8+
"schedule": "before 6am every monday",
9+
"matchManagers": ["github-actions"],
10+
"groupName": "github workflows"
11+
},
12+
{
13+
"schedule": "before 6am every monday",
14+
"matchManagers": ["dockerfile"],
15+
"groupName": "docker deps"
16+
},
17+
{
18+
"schedule": "before 6am every monday",
19+
"matchManagers": ["gomod"],
20+
"groupName": "go deps"
21+
},
22+
{
23+
"matchManagers": ["gomod"],
24+
"matchPackagePrefixes": ["github.com/pion"],
25+
"groupName": "pion deps"
1926
},
2027
{
21-
"packagePatterns": [
22-
"^golang.org/x/"
23-
],
24-
"schedule": [
25-
"on the first day of the month"
26-
]
28+
"matchManagers": ["gomod"],
29+
"matchPackagePrefixes": ["github.com/livekit"],
30+
"groupName": "livekit deps"
2731
}
2832
],
29-
"ignorePaths": [
30-
]
33+
"ignorePaths": []
3134
}

0 commit comments

Comments
 (0)