-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
renovate.json5
58 lines (47 loc) · 1.69 KB
/
renovate.json5
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
/*
Validate this file before committing with (from repository root):
podman run -it \
-v ./.github/renovate.json5:/usr/src/app/renovate.json5:z \
ghcr.io/renovatebot/renovate:latest \
renovate-config-validator
and/or use the pre-commit hook: https://github.com/renovatebot/pre-commit-hooks
*/
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
/*************************************************
****** Global/general configuration options *****
*************************************************/
// Reuse predefined sets of configuration options to DRY
"extends": [
// https://github.com/containers/automation/blob/main/renovate/defaults.json5
"github>containers/automation//renovate/defaults.json5"
],
/*************************************************
*** Repository-specific configuration options ***
*************************************************/
"ignorePaths": [
"**/vendor/**",
"**/docs/**",
],
"addLabels": ["release-note-none"],
// N/B: LAST matching rule wins
"packageRules": [
// Updates for `github.com/containers/*` should be checked more frequently than other deps.
{
"matchCategories": ["golang"],
"schedule": "before 11am",
"matchPackageNames": ["github.com/containers{/,}**"]
},
// Updates for c/common, c/image, and c/storage should be grouped into a single PR.
{
"matchCategories": ["golang"],
"groupName": "common, image, and storage deps",
"schedule": "before 11am",
"matchPackageNames": [
"/^github.com/containers/common/",
"/^github.com/containers/image/",
"/^github.com/containers/storage/"
]
}
],
}