18 lines
527 B
JSON
18 lines
527 B
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"customManagers": [
|
|
{
|
|
"description": "Update yt-dlp version in Dockerfiles",
|
|
"customType": "regex",
|
|
"managerFilePatterns": [
|
|
"/^Dockerfile$/"
|
|
],
|
|
"matchStrings": [
|
|
"ARG YT_DLP_VERSION=\"(?<currentValue>.*?)\""
|
|
],
|
|
"datasourceTemplate": "github-tags",
|
|
"depNameTemplate": "yt-dlp/yt-dlp",
|
|
"versioningTemplate": "regex:^(?<major>\\d{4})\\.(?<minor>\\d{2})\\.(?<patch>\\d{2})$"
|
|
}
|
|
]
|
|
} |