Skip to content

Commit

Permalink
chore: fix renovate example
Browse files Browse the repository at this point in the history
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
```
  • Loading branch information
kopach authored Nov 13, 2024
1 parent 083a7cb commit b43d053
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/renovate-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ module.exports = {
'lockFileMaintenance',
],
dependencyDashboardApproval: false,
minimumReleaseAge: 0,
minimumReleaseAge: '0 days',
},
],
};

0 comments on commit b43d053

Please sign in to comment.