From c3b1fa2a7f3b40576671edbda9d701823d7f8c32 Mon Sep 17 00:00:00 2001 From: "Audun V. Nes" Date: Mon, 6 Sep 2021 21:09:24 +0200 Subject: [PATCH] test: migreate examples (#573) Co-authored-by: Michael Kriese --- example/renovate-config.js | 4 ++-- example/renovate.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/example/renovate-config.js b/example/renovate-config.js index 5caf87ab..574d01a9 100644 --- a/example/renovate-config.js +++ b/example/renovate-config.js @@ -14,7 +14,7 @@ module.exports = { packageRules: [ { description: 'lockFileMaintenance', - updateTypes: [ + matchUpdateTypes: [ 'pin', 'digest', 'patch', @@ -22,7 +22,7 @@ module.exports = { 'major', 'lockFileMaintenance', ], - masterIssueApproval: false, + dependencyDashboardApproval: false, stabilityDays: 0, }, ], diff --git a/example/renovate.json b/example/renovate.json index 8b49d954..6f754950 100644 --- a/example/renovate.json +++ b/example/renovate.json @@ -14,7 +14,7 @@ "packageRules": [ { "description": "lockFileMaintenance", - "updateTypes": [ + "matchUpdateTypes": [ "pin", "digest", "patch", @@ -22,7 +22,7 @@ "major", "lockFileMaintenance" ], - "masterIssueApproval": false, + "dependencyDashboardApproval": false, "stabilityDays": 0 } ]