From e0ea1a528f57c6be42b579231b24a78becf2214b Mon Sep 17 00:00:00 2001 From: stxkxs <139715017+stxkxs@users.noreply.github.com> Date: Fri, 7 Aug 2026 18:19:36 -0700 Subject: [PATCH] chore: adopt the shared renovate preset MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Renovate is installed org-wide, and this repo had no config — so it was getting an onboarding PR carrying Renovate's stock posture rather than the org's. This adopts the shared preset instead: { "extends": ["github>nanohype/.github"] } which brings the reviewed posture: patch and minor open a PR rather than automerging, majors are labelled for review, CVE-triggered updates are excluded from automerge twice over, GitHub Actions are grouped and pinned to commit SHAs, and related packages move together so a split PR cannot land half an upgrade. What there is to manage here: the Go module and the actions in 3 workflows --- renovate.json | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..01564bd --- /dev/null +++ b/renovate.json @@ -0,0 +1,4 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["github>nanohype/.github"] +}