refactor to Go and release v1 #30

Manually merged
williamp merged 33 commits from v1-refactor into master 2026-03-07 01:06:53 +00:00
Showing only changes of commit c72bc42496 - Show all commits

View File

@@ -1,3 +1,18 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.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})$"
}
]
}