-
Notifications
You must be signed in to change notification settings - Fork 125
/
renovate.json
40 lines (40 loc) · 1.03 KB
/
renovate.json
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
{
"$schema": "http://json.schemastore.org/renovate",
"extends": ["config:base"],
"enabled": true,
"prHourlyLimit": 5,
"masterIssue": true,
"pinDigests": true,
"baseBranches": ["master"],
"kubernetes": {
"fileMatch": ["(^|/)[^/]*\\.yaml$"]
},
"schedule": ["before 3am on Monday"],
"packageRules": [
{
"groupName": "Sourcegraph Docker insiders images",
"packagePatterns": ["^index.docker.io/sourcegraph/"],
"ignoreUnstable": false,
"semanticCommits": false,
"labels": ["automerge"]
},
{
"groupName": "Sourcegraph Docker images list",
"packagePatterns": ["github.com/sourcegraph/sourcegraph/enterprise/dev/ci/images"],
"allowedVersions": "~=0.0.0",
"automerge": true
},
{
"groupName": "Pulumi NPM packages",
"managers": ["npm"],
"paths": ["tests/**"],
"packagePatterns": ["@pulumi/"],
"followTag": "latest"
},
{
"matchLanguages": ["golang"],
"packagePatterns": [".*"],
"enabled": false
}
]
}