From be2adbb23f9248ad8a0c4ff781eee1c475ea790c Mon Sep 17 00:00:00 2001 From: willporter-workos Date: Tue, 26 May 2026 16:00:57 -0400 Subject: [PATCH 1/2] fix(renovate): explicitly enable minor and patch updates The shared preset now disables minor updates by default. Add enabled: true to the minor/patch rule so this repo continues to receive minor PRs. Co-Authored-By: Claude Sonnet 4.6 --- renovate.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index a85ec6f..18eee05 100644 --- a/renovate.json +++ b/renovate.json @@ -21,7 +21,8 @@ "patch" ], "automerge": true, - "groupName": "minor and patch updates" + "groupName": "minor and patch updates", + "enabled": true }, { "matchUpdateTypes": [ From b1ea3d5fd0b6063fa737cdfff4e45cbf2b6dc81e Mon Sep 17 00:00:00 2001 From: Garen Torikian Date: Wed, 27 May 2026 16:24:39 -0400 Subject: [PATCH 2/2] Update renovate.json --- renovate.json | 38 ++------------------------------------ 1 file changed, 2 insertions(+), 36 deletions(-) diff --git a/renovate.json b/renovate.json index 18eee05..d702521 100644 --- a/renovate.json +++ b/renovate.json @@ -1,40 +1,6 @@ { + "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ - "github>workos/renovate-config" - ], - "dependencyDashboard": false, - "schedule": [ - "on the 15th day of the month before 12pm" - ], - "timezone": "UTC", - "rebaseWhen": "conflicted", - "packageRules": [ - { - "matchManagers": [ - "github-actions" - ], - "extractVersion": "^v(?\\d+\\.\\d+\\.\\d+)$" - }, - { - "matchUpdateTypes": [ - "minor", - "patch" - ], - "automerge": true, - "groupName": "minor and patch updates", - "enabled": true - }, - { - "matchUpdateTypes": [ - "major" - ], - "automerge": false - }, - { - "matchUpdateTypes": [ - "digest" - ], - "automerge": false - } + "github>workos/renovate-config:public" ] }