Template
mirror of
https://github.com/mantinedev/next-app-template.git
synced 2026-08-15 02:53:08 +10:00
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>
23 lines
546 B
JSON
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
|
|
}
|