From c8abf5e665c2730dbfac65d8d984a7344b3ac6d3 Mon Sep 17 00:00:00 2001 From: Maxim Kalina Date: Sat, 9 May 2026 11:09:14 +0200 Subject: [PATCH] chore: adopt org-wide Renovate config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adopts the central Renovate configuration from plugwerk/.github so this repo benefits from the org defaults (config:recommended, GitHub Actions SHA-pinning, npm grouping/major-split/exact-pin, schedule, dependency dashboard) without maintaining a parallel copy here. This is the standard GitHub-org pattern: per-repo renovate.json carries only `extends` plus repo-specific overrides. There are no stack-specific overrides for this repo today — the org defaults cover everything we need. Refs plugwerk/.github#1 --- .github/renovate.json | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .github/renovate.json diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000..e4986a9 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,4 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["github>plugwerk/.github"] +}