From ca0037ad769c876f02fb7f713b7dd071b1d17fe9 Mon Sep 17 00:00:00 2001 From: Frank Lichtenheld Date: Wed, 15 Jan 2025 17:23:49 +0100 Subject: [PATCH] Configure renovate Copies applicable parts of the config for openvpn3. Signed-off-by: Frank Lichtenheld --- renovate.json | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 97753466..b2e1d389 100644 --- a/renovate.json +++ b/renovate.json @@ -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*(?.*?)\\n"], + "currentValueTemplate": "master", + "depNameTemplate": "vcpkg", + "packageNameTemplate": "https://github.com/microsoft/vcpkg", + "datasourceTemplate": "git-refs" + } + ] }