From 433e2bb2ee25d4991ec7ac6e50993847e74f3d50 Mon Sep 17 00:00:00 2001 From: Valentin Maerten Date: Sun, 23 Aug 2026 12:24:58 +0200 Subject: [PATCH] docs(remote): add the remote.auth schema to next-schema-taskrc.json Same next/latest split as the docs: schema.json and schema-taskrc.json are the frozen copies served for the released version. --- website/src/public/next-schema-taskrc.json | 22 ++++++++++++++++++++++ website/src/public/schema-taskrc.json | 22 ---------------------- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/website/src/public/next-schema-taskrc.json b/website/src/public/next-schema-taskrc.json index d12f4460..9f4069d8 100644 --- a/website/src/public/next-schema-taskrc.json +++ b/website/src/public/next-schema-taskrc.json @@ -49,6 +49,28 @@ "items": { "type": "string" } + }, + "auth": { + "type": "array", + "description": "HTTP headers to send when downloading remote Taskfiles, per host.", + "items": { + "type": "object", + "properties": { + "host": { + "type": "string", + "description": "Host the headers apply to, including the port if the URL has one (e.g., 'gitlab.com', 'example.com:8080')." + }, + "headers": { + "type": "object", + "description": "Headers to send. Values may reference environment variables with ${VAR} or $VAR.", + "additionalProperties": { + "type": "string" + } + } + }, + "required": ["host", "headers"], + "additionalProperties": false + } } }, "additionalProperties": false diff --git a/website/src/public/schema-taskrc.json b/website/src/public/schema-taskrc.json index 9f4069d8..d12f4460 100644 --- a/website/src/public/schema-taskrc.json +++ b/website/src/public/schema-taskrc.json @@ -49,28 +49,6 @@ "items": { "type": "string" } - }, - "auth": { - "type": "array", - "description": "HTTP headers to send when downloading remote Taskfiles, per host.", - "items": { - "type": "object", - "properties": { - "host": { - "type": "string", - "description": "Host the headers apply to, including the port if the URL has one (e.g., 'gitlab.com', 'example.com:8080')." - }, - "headers": { - "type": "object", - "description": "Headers to send. Values may reference environment variables with ${VAR} or $VAR.", - "additionalProperties": { - "type": "string" - } - } - }, - "required": ["host", "headers"], - "additionalProperties": false - } } }, "additionalProperties": false