From d126ff127b596d0d6c7e1dba9c860119e31fd23a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 10 Dec 2025 20:04:36 +0000 Subject: [PATCH 1/3] Initial plan From 9e0cb9ce0d189037928b350bebedab9fc06160a5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 10 Dec 2025 20:08:39 +0000 Subject: [PATCH 2/3] chore: temporarily disable Renovate (Shai-Hulud freeze) Co-authored-by: tomwillis608 <15950648+tomwillis608@users.noreply.github.com> --- .github/renovate.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/renovate.json b/.github/renovate.json index 3b9fa715..bd96e1f4 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,5 +1,9 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", + // SHAI-HULUD FREEZE: + // Flip this to true or remove this flag when it is safe + // to re-enable Renovate. + "enabled": false, "extends": ["config:recommended", ":dependencyDashboard", ":rebaseStalePrs"], "pre-commit": { "enabled": true From b3f17f41d7bf99f6fbd4bc13b5415171dc7cf18b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 10 Dec 2025 20:25:17 +0000 Subject: [PATCH 3/3] fix: exclude renovate.json from check-json pre-commit hook Renovate config supports JSONC (JSON with comments), but the check-json hook expects strict JSON. Excluded .github/renovate.json from the hook to allow comments for documentation purposes. Co-authored-by: tomwillis608 <15950648+tomwillis608@users.noreply.github.com> --- .pre-commit-config.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index ea67fa35..fcae9ae0 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -16,6 +16,7 @@ repos: - id: check-ast - id: check-yaml - id: check-json + exclude: ^\.github/renovate\.json$ - id: check-toml - id: check-added-large-files args: ["--maxkb=2200"]