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.
This commit is contained in:
Valentin Maerten
2026-08-23 12:24:58 +02:00
parent d10460ab61
commit 433e2bb2ee
2 changed files with 22 additions and 22 deletions

View File

@@ -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

View File

@@ -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