Files
next-app-template/renovate.json
T
Vitaly RtishchevandClaude Opus 5 636fa91ee9 Add minimumReleaseAge to Renovate config
Yarn 4.17 defaults `npmMinimalAgeGate` to `1d`, so any npm version
published less than 24h ago is quarantined at the resolution step and
`yarn` exits with YN0016. Renovate had no age filter, so it regularly
proposed versions younger than the gate, breaking both the lockfile
update and CI for the whole grouped PR.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-07-28 17:52:30 +03:00

23 lines
546 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"schedule": ["before 5am on sunday"],
"minimumReleaseAge": "3 days",
"separateMajorMinor": true,
"automergeType": "pr",
"platformAutomerge": true,
"packageRules": [
{
"matchUpdateTypes": ["minor", "patch"],
"groupName": "all non-major dependencies",
"automerge": true
},
{
"matchUpdateTypes": ["major"],
"groupName": "major dependencies",
"automerge": false
}
],
"prHourlyLimit": 0,
"prConcurrentLimit": 0
}