From 7e0afc90fd0471011a1a95156c2836c8eb5154fb Mon Sep 17 00:00:00 2001 From: itsjohncs Date: Sat, 29 Jan 2022 17:31:37 -0800 Subject: [PATCH] Replace deprecated Renovate config options. This was an automatically requested migration that the `renovate-config-validator` asked for. It's hard to tell because the config options it asked to be removed are no longer in their docs, but I believe this will not change the behavior of the renovate bot at all. --- renovate.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/renovate.json b/renovate.json index 8b201524..9ae2c572 100644 --- a/renovate.json +++ b/renovate.json @@ -2,16 +2,14 @@ "extends": ["config:base"], "ignorePaths": ["test/"], "labels": ["Type: Dependencies"], - "rebaseStalePrs": true, - "statusCheckVerify": true, "stabilityDays": 1, "vulnerabilityAlerts": { "labels": ["Type: Security"] }, "packageRules": [ { - "depTypeList": ["dependencies", "devDependencies"], - "extends": ["schedule:monthly"] + "extends": ["schedule:monthly"], + "matchDepTypes": ["dependencies", "devDependencies"] } ] }