From 6218f6564b4e2c26e3702abbfc468c1ed0d904e9 Mon Sep 17 00:00:00 2001 From: Sebastian Mendel Date: Wed, 26 Aug 2026 18:12:28 +0200 Subject: [PATCH] chore(renovate): enable the pre-commit manager, pin validator at v1.36.0 The pre-commit config header promises that Renovate bumps the pinned hook revs automatically; the pre-commit manager is opt-in and was never enabled, so the pin stayed where scaffolding left it while CI validates against skill-repo-skill main. Enables the manager and pins the validator hooks at v1.36.0, matching what CI enforces today. Part of netresearch/skill-repo-skill#252. Assisted-by: claude-code:claude-fable-5 Agent-Session: https://claude.ai/code/session_01C7S9rbgu5giqCwnzwafrHA Agent-Host: 0493f0 Signed-off-by: Sebastian Mendel --- .pre-commit-config.yaml | 2 +- renovate.json | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 1914f98..ff2674a 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -27,7 +27,7 @@ repos: args: [--allow-multiple-documents] - repo: https://github.com/netresearch/skill-repo-skill - rev: v1.22.0 + rev: v1.36.0 hooks: - id: validate-skill - id: check-version-parity diff --git a/renovate.json b/renovate.json index 5db72dd..dfe6ee4 100644 --- a/renovate.json +++ b/renovate.json @@ -2,5 +2,8 @@ "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ "config:recommended" - ] + ], + "pre-commit": { + "enabled": true + } }