forked from kedacore/charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json5
39 lines (38 loc) · 952 Bytes
/
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
],
"labels": ["renovate"],
"prConcurrentLimit": 2,
"ignorePaths": ["**/vendor/**"],
// ignore everything except those that are white-listed
"packageRules": [
{
"packagePatterns": ["*"],
"enabled": false,
},
{
"packageNames": [
"ghcr.io/kedify/agent", // docker img
],
// paused, because the image tag is being updated by PR from a gh action on agent's repo
"enabled": false,
},
],
"regexManagers": [
{
// kedify agent
"fileMatch": ["^kedify-agent/values.yaml$"],
"datasourceTemplate": "docker",
"depNameTemplate": "ghcr.io/kedify/agent",
"matchStrings": [
"tag:\\s+\"?(?<currentValue>[^\"\n]+)\"?\\s*\n",
],
},
],
"reviewers": ["team:all"],
"prBodyNotes": [
"Bump some versions we have inside our code",
],
}