From 98ca0679a133fdf1ab755d106188101f501fc0e6 Mon Sep 17 00:00:00 2001 From: actions-user Date: Fri, 26 May 2023 02:09:10 +0000 Subject: [PATCH] chore: docs auto-update --- www/docs/static/schema.json | 64 +++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) diff --git a/www/docs/static/schema.json b/www/docs/static/schema.json index deb9f8f69..207684e7a 100644 --- a/www/docs/static/schema.json +++ b/www/docs/static/schema.json @@ -1967,6 +1967,64 @@ "additionalProperties": false, "type": "object" }, + "Nix": { + "properties": { + "name": { + "type": "string" + }, + "path": { + "type": "string" + }, + "repository": { + "$ref": "#/$defs/RepoRef" + }, + "commit_author": { + "$ref": "#/$defs/CommitAuthor" + }, + "commit_msg_template": { + "type": "string" + }, + "ids": { + "items": { + "type": "string" + }, + "type": "array" + }, + "goamd64": { + "type": "string" + }, + "skip_upload": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "boolean" + } + ] + }, + "url_template": { + "type": "string" + }, + "install": { + "type": "string" + }, + "post_install": { + "type": "string" + }, + "description": { + "type": "string" + }, + "homepage": { + "type": "string" + }, + "license": { + "type": "string" + } + }, + "additionalProperties": false, + "type": "object" + }, "OpenCollective": { "properties": { "enabled": { @@ -2011,6 +2069,12 @@ }, "type": "array" }, + "nix": { + "items": { + "$ref": "#/$defs/Nix" + }, + "type": "array" + }, "aurs": { "items": { "$ref": "#/$defs/AUR"