This repository has been archived by the owner on Apr 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
53 lines (53 loc) · 1.57 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
":approveMajorUpdates",
":dependencyDashboard",
":ignoreModulesAndTests",
":prConcurrentLimitNone",
":semanticPrefixFixDepsChoreOthers",
"replacements:all",
"workarounds:all"
],
"enabledManagers": [
"circleci",
"dockerfile",
"docker-compose",
"github-actions",
"npm",
"custom.regex",
"terraform"
],
"branchPrefix": "dependencies/",
"labels": ["📦 dependencies"],
"assigneesFromCodeOwners": true,
"timezone": "Europe/Berlin",
"configMigration": true,
"osvVulnerabilityAlerts": true,
"dependencyDashboardOSVVulnerabilitySummary": "all",
"platformCommit": true,
"prHourlyLimit": 5,
"baseBranches": ["$default"],
"useBaseBranchConfig": "merge",
"minimumReleaseAge": "72 hours",
"schedule": "on the first day of the month",
"customManagers": [
{
"customType": "regex",
"description": "Update _VERSION variables in Dockerfiles",
"fileMatch": ["(^|/|\\.)Dockerfile$", "(^|/)Dockerfile\\.[^/]*$"],
"matchStrings": [
"# renovate: datasource=(?<datasource>[a-z-]+?) depName=(?<depName>.+?)(?: packageName=(?<packageName>.+?))?(?: versioning=(?<versioning>[a-z-]+?))?\\s(?:ENV|ARG) .+?_VERSION=(?<currentValue>.+?)\\s"
],
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}"
}
],
"packageRules": [
{
"description": "Enable npm dependency updates",
"matchPackagePatterns": ["*"],
"matchManagers": ["npm"],
"enabled": true
}
]
}