forked from opendatahub-io/argo-workflows
-
Notifications
You must be signed in to change notification settings - Fork 3
/
renovate.json
79 lines (79 loc) · 2.42 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"branchPrefix": "renovate/",
"baseBranches": ["main", "rhoai-2.16"],
"ignoreTests": true,
"automergeType": "pr",
"automerge": true,
"enabledManagers": ["dockerfile", "tekton", "rpm"],
"dockerfile": {
"schedule": ["at any time"],
"enabled": true,
"additionalBranchPrefix": "{{baseBranch}}/",
"branchPrefix": "konflux/mintmaker/",
"ignoreTests": true,
"automergeType": "pr",
"automerge": true,
"packageRules": [
{
"matchUpdateTypes": ["major", "minor", "pin", "pinDigest", "patch", "bump"],
"enabled": false
},
{
"matchUpdateTypes": ["digest"],
"enabled": true
},
{
"matchFileNames": ["*Dockerfile.konflux*"],
"enabled": true
}
]
},
"tekton": {
"fileMatch": [
"\\.yaml$",
"\\.yml$"
],
"includePaths": [
".tekton/**"
],
"packageRules": [
{
"matchUpdateTypes": ["major", "minor", "pin", "pinDigest", "patch", "bump"],
"enabled": false
},
{
"matchPackagePatterns": [
"^quay.io/redhat-appstudio-tekton-catalog/",
"^quay.io/konflux-ci/tekton-catalog/"
],
"matchUpdateTypes": ["digest"],
"enabled": true,
"groupName": "Konflux references",
"branchPrefix": "konflux/references/",
"group": {
"branchTopic": "{{{baseBranch}}}",
"commitMessageTopic": "{{{groupName}}}"
},
"commitMessageTopic": "Konflux references",
"semanticCommits": "enabled",
"prFooter": "To execute skipped test pipelines write comment `/ok-to-test`",
"prBodyColumns": [
"Package",
"Change",
"Notes"
],
"prBodyDefinitions": {
"Notes": "{{#if (or (containsString updateType 'minor') (containsString updateType 'major'))}}:warning:[migration](https://github.com/redhat-appstudio/build-definitions/blob/main/task/{{{replace '^quay.io/(redhat-appstudio-tekton-catalog|konflux-ci/tekton-catalog)/task-' '' packageName}}}/{{{newVersion}}}/MIGRATION.md):warning:{{/if}}"
},
"prBodyTemplate": "{{{header}}}{{{table}}}{{{notes}}}{{{changelogs}}}{{{controls}}}{{{footer}}}",
"recreateWhen": "always",
"rebaseWhen": "behind-base-branch"
}
]
},
"prHourlyLimit": 0
}