-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathrenovate.json
More file actions
43 lines (43 loc) · 1.03 KB
/
renovate.json
File metadata and controls
43 lines (43 loc) · 1.03 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"labels": [
"🤖 Dependencies"
],
"commitMessagePrefix": "chore: ",
"lockFileMaintenance": {
"enabled": true,
"automerge": true
},
"platformAutomerge": true,
"schedule": [
"* 0-3 * * 1"
],
"postUpdateOptions": [
"gomodTidy"
],
"packageRules": [
{
"groupName": "non-major dependencies",
"matchUpdateTypes": [
"digest",
"pin",
"patch",
"minor"
],
"automerge": true,
"matchFileNames": ["**/go.mod", ".github/**"]
},
{
"groupName": "upgrade DB packages",
"automerge": true,
"matchPackageNames": ["github.com/goravel/mysql", "github.com/goravel/postgres", "github.com/goravel/sqlite", "github.com/goravel/sqlserver"],
"allowedVersions": ">=0.0.0",
"matchFileNames": ["tests/go.mod"]
}
],
"ignoreDeps": ["github.com/vektra/mockery/v2", "github.com/dromara/carbon/v2"],
"ignorePaths": []
}