From 7bef6ba7068131cbc0113c30b58e9b600690b55c Mon Sep 17 00:00:00 2001 From: HAL9000 Date: Mon, 11 May 2026 00:39:49 +0000 Subject: [PATCH 1/2] fix(devcontainer): remove invalid trailing commas from opencode.json The JSON config file contained multiple trailing commas which caused Python's strict JSON parser to fail. Fixed all occurrences where commas appeared after the last property value in objects before closing braces. --- .devcontainer/opencode.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.devcontainer/opencode.json b/.devcontainer/opencode.json index 59f8bcf5f..2829168fe 100644 --- a/.devcontainer/opencode.json +++ b/.devcontainer/opencode.json @@ -11,7 +11,7 @@ "type": "local", "command": ["npx", "@modelcontextprotocol/server-sequential-thinking"], "enabled": false - }, + } }, "provider": { "CleverThis": { @@ -21,7 +21,7 @@ "apiKey": "{env:HF_TOKEN}", "headers": { "X-HF-Bill-To": "CleverThis", - "Authorization": "Bearer {env:HF_TOKEN}", + "Authorization": "Bearer {env:HF_TOKEN}" } }, "models": { @@ -38,7 +38,7 @@ "apiKey": "{env:HF_TOKEN}", "headers": { "X-HF-Bill-To": "CleverThis", - "Authorization": "Bearer {env:HF_TOKEN}", + "Authorization": "Bearer {env:HF_TOKEN}" } }, "models": { @@ -59,7 +59,7 @@ "apiKey": "{env:HF_TOKEN}", "headers": { "X-HF-Bill-To": "CleverThis", - "Authorization": "Bearer {env:HF_TOKEN}", + "Authorization": "Bearer {env:HF_TOKEN}" } }, "models": { @@ -76,7 +76,7 @@ "apiKey": "{env:HF_TOKEN}", "headers": { "X-HF-Bill-To": "CleverThis", - "Authorization": "Bearer {env:HF_TOKEN}", + "Authorization": "Bearer {env:HF_TOKEN}" } }, "models": { @@ -93,7 +93,7 @@ "apiKey": "{env:HF_TOKEN}", "headers": { "X-HF-Bill-To": "CleverThis", - "Authorization": "Bearer {env:HF_TOKEN}", + "Authorization": "Bearer {env:HF_TOKEN}" } }, "models": { @@ -110,7 +110,7 @@ "apiKey": "{env:HF_TOKEN}", "headers": { "X-HF-Bill-To": "CleverThis", - "Authorization": "Bearer {env:HF_TOKEN}", + "Authorization": "Bearer {env:HF_TOKEN}" } }, "models": { @@ -127,7 +127,7 @@ "apiKey": "{env:HF_TOKEN}", "headers": { "X-HF-Bill-To": "CleverThis", - "Authorization": "Bearer {env:HF_TOKEN}", + "Authorization": "Bearer {env:HF_TOKEN}" } }, "models": { @@ -144,7 +144,7 @@ "apiKey": "{env:HF_TOKEN}", "headers": { "X-HF-Bill-To": "CleverThis", - "Authorization": "Bearer {env:HF_TOKEN}", + "Authorization": "Bearer {env:HF_TOKEN}" } }, "models": { -- 2.52.0 From bb87e81acde2d3c4029b82270f0534a015053e1d Mon Sep 17 00:00:00 2001 From: CleverAgents Bot Date: Wed, 10 Jun 2026 20:17:48 -0400 Subject: [PATCH 2/2] ci: stop master workflow on PR updates Remove the stale pull_request trigger from master.yml so PR branch commits do not launch the master workflow. Maintenance patch for PR #11109. --- .forgejo/workflows/master.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.forgejo/workflows/master.yml b/.forgejo/workflows/master.yml index 7c959ba40..ccdede22d 100644 --- a/.forgejo/workflows/master.yml +++ b/.forgejo/workflows/master.yml @@ -3,8 +3,6 @@ name: CI on: push: branches: [master, develop] - pull_request: - branches: [master, develop] vars: docker_prefix: "http://harbor.cleverthis.com/docker/" -- 2.52.0