mirror of
https://github.com/renovatebot/github-action.git
synced 2025-12-27 12:43:37 +00:00
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 ```
This commit is contained in:
parent
083a7cb291
commit
b43d0535de
1 changed files with 1 additions and 1 deletions
|
|
@ -19,7 +19,7 @@ module.exports = {
|
|||
'lockFileMaintenance',
|
||||
],
|
||||
dependencyDashboardApproval: false,
|
||||
minimumReleaseAge: 0,
|
||||
minimumReleaseAge: '0 days',
|
||||
},
|
||||
],
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue