From b43d0535ded7adb535a16992aab6160fef1b902b Mon Sep 17 00:00:00 2001 From: Ihor Date: Wed, 13 Nov 2024 17:04:36 +0100 Subject: [PATCH] chore: fix renovate example Renovate would throw validation error if this property not a string ``` Error type: The renovate configuration file contains some invalid settings Message: Configuration option packageRules[2].minimumReleaseAge should be a string ``` --- example/renovate-config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/renovate-config.js b/example/renovate-config.js index 4eb82990e8e..6b0b4376504 100644 --- a/example/renovate-config.js +++ b/example/renovate-config.js @@ -19,7 +19,7 @@ module.exports = { 'lockFileMaintenance', ], dependencyDashboardApproval: false, - minimumReleaseAge: 0, + minimumReleaseAge: '0 days', }, ], };