-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathrenovate.json
More file actions
51 lines (51 loc) · 1.53 KB
/
renovate.json
File metadata and controls
51 lines (51 loc) · 1.53 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>RedHatInsights/konflux-pipelines//renovate/foreman_satellite/renovate.json"
],
"timezone": "Europe/Prague",
"tekton": {
"automerge": true,
"automergeStrategy": "rebase",
"automergeType": "pr",
"enabled": true,
"ignoreTests": true,
"platformAutomerge": true
},
"packageRules": [
{
"matchPackageNames": ["unleashclient", "cython", "cramjam", "rpds-py", "https://github.com/reorg/pg_repack.git"],
"enabled": false
},
{
"matchFileNames": ["**/requirements*.txt", "Dockerfile.test", "Dockerfile.dbdocs", "**/grafana/Dockerfile", "**/platform_mock/Dockerfile"],
"enabled": false
},
{
"matchManagers": ["rpm-lockfile"],
"description": "Disable rpm-lockfile manager since it only makes sense to update RPM lockfile when base image changes (except few packages installed on top base image).",
"enabled": false
},
{
"matchManagers": ["poetry"],
"groupName": "poetry dependencies",
"groupSlug": "poetry-deps"
},
{
"matchCategories": ["docker"],
"groupName": "docker and rpm references",
"groupSlug": "docker-rpm-refs",
"pinDigests": true,
"postUpgradeTasks": {
"commands": ["rpm-lockfile-prototype rpms.in.yaml"],
"fileFilters": ["**/rpms.lock.yaml"]
}
},
{
"matchCategories": ["ci"],
"groupName": "ci references",
"groupSlug": "ci-refs",
"pinDigests": true
}
]
}