-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathrenovate.json
39 lines (39 loc) · 1.16 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
{
"timezone": "Europe/Stockholm",
"schedule": ["at any time"],
"extends": ["config:recommended", ":prHourlyLimitNone"],
"configMigration": true,
"labels": ["dependencies"],
"ignorePaths": ["container-example/**"],
"packageRules": [
{
"groupName": "Update of files using super-linter",
"matchFileNames": ["LINT.md", "run-linters", ".github/workflows/linter.y(a)?ml" ]
},
{
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
"automerge": true
},
{
"matchManagers": ["dockerfile"],
"enabled": false
}
],
"customManagers": [
{
"customType": "regex",
"description": "Update super-linter",
"fileMatch": ["LINT.md", "run-linters"],
"depNameTemplate": "docker",
"datasourceTemplate": "docker",
"matchStrings": [".*ghcr.io/super-linter/super-linter:(?<currentValue>.*?)\\n"]
}
],
"rebaseWhen": "behind-base-branch",
"vulnerabilityAlerts": {
"labels": ["security"]
},
"minimumReleaseAge": "7 days",
"prCreation": "not-pending",
"dependencyDashboard": true
}