From a0b62d8e043ba0ba7ee17c5422b6db4d588a2ea1 Mon Sep 17 00:00:00 2001 From: Wesley Johnson Date: Sat, 18 Jul 2026 13:39:22 -0500 Subject: [PATCH] chore(renovate): label Renovate PRs semver:patch (semver:skip for actions) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Semver Label check is becoming a required status check on main (dataviking-infra#72). Renovate PRs carry no labels by default, so without this they would sit blocked behind the new gate. Default new Renovate PRs to semver:patch; the github-actions group gets semver:skip since workflow bumps change nothing that ships to PyPI (packageRules `labels` replaces the top-level list, so exactly one label lands). Note: Renovate only applies label config at PR creation — the currently open Renovate PRs are labeled by hand to match. Co-Authored-By: Claude Fable 5 --- renovate.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 1eb24a68..2ed97be5 100644 --- a/renovate.json +++ b/renovate.json @@ -1,6 +1,7 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": ["config:recommended"], + "labels": ["semver:patch"], "packageRules": [ { "matchUpdateTypes": ["patch"], "automerge": false }, { @@ -11,7 +12,8 @@ { "matchManagers": ["github-actions"], "groupName": "github-actions", - "schedule": ["before 9am on monday"] + "schedule": ["before 9am on monday"], + "labels": ["semver:skip"] } ], "prConcurrentLimit": 5