From e460c94a613880576ba343291d8390f468f96a3d Mon Sep 17 00:00:00 2001 From: ryndaniels Date: Wed, 20 May 2026 17:34:53 +0300 Subject: [PATCH] Enable automerge for non-major Renovate PRs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add packageRules for patch/minor with automerge+autoApprove and a label-only rule for major, matching the api-identity reference config. Without these, platformAutomerge alone does nothing — Renovate PRs sit BLOCKED on review required. Co-Authored-By: Claude Opus 4.7 (1M context) --- renovate.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/renovate.json b/renovate.json index 0f32a19..e96c591 100644 --- a/renovate.json +++ b/renovate.json @@ -20,6 +20,22 @@ "41898282+github-actions[bot]@users.noreply.github.com" ], "packageRules": [ + { + "matchUpdateTypes": ["patch"], + "addLabels": ["patch"], + "automerge": true, + "autoApprove": true + }, + { + "matchUpdateTypes": ["minor"], + "addLabels": ["minor"], + "automerge": true, + "autoApprove": true + }, + { + "matchUpdateTypes": ["major"], + "addLabels": ["major"] + }, { "description": "Group AWS SDK and @mapbox/cloudfriend together.", "matchManagers": ["npm"],