forked from konflux-ci/build-definitions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
91 lines (91 loc) · 2.73 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
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"dependencyDashboard": false,
"tekton": {
"fileMatch": ["\\.yaml$", "\\.yml$"],
"includePaths": [
".tekton/**",
"task/**",
"stepactions/**",
"pipelines/enterprise-contract*.yaml"
]
},
"packageRules": [
{
"matchPackageNames": [
"quay.io/konflux-ci/pull-request-builds",
"quay.io/konflux-ci/appstudio-utils",
"quay.io/konflux-ci/buildah",
"quay.io/konflux-ci/source-container-build",
"quay.io/redhat-appstudio/e2e-tests",
"quay.io/redhat-appstudio/buildah",
"quay.io/redhat-appstudio/hacbs-jvm-build-request-processor",
"quay.io/redhat-appstudio/build-definitions-source-image-build-utils",
"quay.io/redhat-appstudio/cachi2",
"quay.io/redhat-appstudio/sbom-utility-scripts-image",
"registry.access.redhat.com/rh-syft-tech-preview/syft-rhel9"
],
"groupName": "build",
"reviewers": ["mmorhun", "tkdchen", "rcerven", "mkosiarc", "brunoapimentel", "chmeliik"]
},
{
"matchPackagePrefixes": [
"quay.io/enterprise-contract/"
],
"matchPackageNames": [
"registry.redhat.io/openshift-pipelines/pipelines-cli-tkn-rhel8"
],
"groupName": "ec",
"reviewers": ["zregvart", "lcarva"]
},
{
"matchPackageNames": [
"quay.io/redhat-appstudio/konflux-test",
"quay.io/redhat-appstudio/clair-in-ci",
"quay.io/redhat-appstudio/clamav-db"
],
"groupName": "integration",
"reviewers": ["dirgim", "hongweiliu17", "jsztuka", "Josh-Everett", " 14rcole", "chipspeak", "dheerajodha", "kasemAlem", "jencull", "sonam1412"]
},
{
"matchPackageNames": [
"quay.io/opdev/preflight"
],
"groupName": "preflight",
"reviewers": ["skattoju"]
},
{
"matchPackagePrefixes": [
"registry.redhat.io",
"registry.access.redhat.com",
"docker.io"
],
"schedule": ["on monday and wednesday"],
"groupName": "shared"
},
{
"matchPackageNames": [
"quay.io/redhat-appstudio/clamav-db"
],
"enabled": false,
"groupName": "ignore"
}
],
"postUpdateOptions": [
"gomodTidy"
],
"customManagers": [
{
"customType": "regex",
"fileMatch": ["^task/[\\w-]+/[0-9.]+/[\\w-]+\\.yaml$"],
"matchStrings": [
"value: (?<depName>quay\\.io/konflux-ci/buildah[^:]*):(?<currentValue>[^@]*)@(?<currentDigest>sha256:[a-f0-9]{64})"
],
"autoReplaceStringTemplate": "value: {{depName}}{{#if newValue}}:{{newValue}}{{/if}}{{#if newDigest}}@{{newDigest}}{{/if}}",
"datasourceTemplate": "docker"
}
]
}