Configure renovate

Copies applicable parts of the config for openvpn3.

Signed-off-by: Frank Lichtenheld <frank@lichtenheld.com>
pull/722/head
Frank Lichtenheld 2025-01-15 17:23:49 +01:00
parent d10ad640cf
commit 02f75b65b5
1 changed files with 32 additions and 1 deletions

View File

@ -1,3 +1,34 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"packageRules": [
{
"matchDepTypes": [
"action"
],
"groupName": "github actions",
"pinDigests": true,
"extends": [
"schedule:monthly"
]
},
{
"matchDepNames": [
"vcpkg"
],
"extends": [
"schedule:monthly"
]
}
],
"customManagers": [
{
"customType": "regex",
"fileMatch": ["^\\.github/workflows/.+\\.yml$"],
"matchStrings": ["vcpkgGitCommitId:\\s*(?<currentDigest>.*?)\\n"],
"currentValueTemplate": "master",
"depNameTemplate": "vcpkg",
"packageNameTemplate": "https://github.com/microsoft/vcpkg",
"datasourceTemplate": "git-refs"
}
]
}