From 72d267c2422f180e928f225732303c41ae33f191 Mon Sep 17 00:00:00 2001 From: tannevaled Date: Thu, 27 Aug 2026 20:46:45 +0200 Subject: [PATCH] Set Renovate to watch the siblings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This module is on its siblings' current releases today, and nothing was making sure it stayed there. Nine of the ten Go modules in this organisation had fallen behind at least once by this afternoon, and two of them — ops and pdffont — were still requiring the reader from before a 21-second denial of service was fixed in it, and handing that to their own callers. The organisation already has a Renovate preset at go-pdfkit/.github, with rules for Go modules and for actions. Not one of the ten Go modules extended it, so the preset had never been read by anything. This adds the one-line renovate.json that does, matching what every go-ruby-* repository already has. Renovate still has to be installed on the organisation for it to run, which this cannot do from here. Co-Authored-By: Claude Opus 5 --- 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..fd6bb9b --- /dev/null +++ b/renovate.json @@ -0,0 +1,4 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["github>go-pdfkit/.github"] +}