-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathrenovate.json
More file actions
53 lines (53 loc) · 1.26 KB
/
renovate.json
File metadata and controls
53 lines (53 loc) · 1.26 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
44
45
46
47
48
49
50
51
52
53
{
"extends": [
"github>konflux-ci/mintmaker//config/renovate/renovate.json"
],
"ignorePaths": [
".pre-commit-config.yaml"
],
"baseBranches": ["master"],
"customManagers": [
{
"customType": "regex",
"fileMatch": ["\\.tekton/.*\\.yaml$"],
"matchStrings": [
"RedHatInsights/konflux-pipelines/raw/v(?<currentValue>[\\d.]+)"
],
"depNameTemplate": "RedHatInsights/konflux-pipelines",
"datasourceTemplate": "github-releases"
}
],
"packageRules": [
{
"matchPackageNames": ["RedHatInsights/konflux-pipelines"],
"matchUpdateTypes": ["minor", "patch"],
"automerge": true,
"platformAutomerge": true
},
{
"description": "Automerge build-tools submodule updates",
"matchManagers": ["git-submodules"],
"matchDepNames": ["build-tools"],
"matchUpdateTypes": ["digest"],
"automerge": true,
"platformAutomerge": true
},
{
"description": "Disable all npm dependency updates",
"matchManagers": ["npm"],
"enabled": false
}
],
"tekton": {
"enabled": true,
"packageRules": [
{
"matchUpdateTypes": [
"digest"
],
"platformAutomerge": true,
"automerge": true
}
]
}
}