Does anyone know if I can nest the schedule inside an object like so:
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
{
"description": "Schedule to run daily at night",
"schedule": ["* 20-23,0-6 * * *"]
}
"timezone": "Europe/London",
...
}
Because I saw in the documentation they use:
{
"description": "Schedule daily before 4 AM",
"schedule": ["* 0-3 * * *"]
}
but it's probably referring to the top level config braces...