-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathrenovate.json
More file actions
30 lines (30 loc) · 1.04 KB
/
renovate.json
File metadata and controls
30 lines (30 loc) · 1.04 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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended", "helpers:pinGitHubActionDigests"],
"labels": ["dependencies"],
"rangeStrategy": "bump",
"minimumReleaseAge": "3 days",
"prConcurrentLimit": 3,
"timezone": "Europe/London",
"schedule": ["after 01:00 and before 07:00 every weekday"],
"packageRules": [
{
"matchDatasources": ["github-releases"],
"matchPackageNames": ["stacklok/toolhive"],
"prPriority": 10,
"schedule": []
}
],
"customManagers": [
{
"customType": "regex",
"fileMatch": ["^utils/constants\\.ts$"],
"matchStrings": [
"renovate: datasource=(?<datasource>\\S+) depName=(?<depName>\\S+)(?: versioning=(?<versioning>\\S+))?\\s*\\*/\\s*export const TOOLHIVE_VERSION = process\\.env\\.THV_VERSION \\?\\? '(?<currentValue>.*?)'"
],
"datasourceTemplate": "{{datasource}}",
"depNameTemplate": "{{depName}}",
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}"
}
]
}