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 } ]