From 76796e679d8337cbac5766657eb68906cc4669e6 Mon Sep 17 00:00:00 2001 From: Carlos A Becker Date: Fri, 17 Feb 2023 10:42:39 -0300 Subject: [PATCH] chore: update schema Signed-off-by: Carlos A Becker --- www/docs/static/schema-pro.json | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/www/docs/static/schema-pro.json b/www/docs/static/schema-pro.json index 3bfe86d65..04f05b739 100644 --- a/www/docs/static/schema-pro.json +++ b/www/docs/static/schema-pro.json @@ -159,6 +159,9 @@ }, "webhook": { "$ref": "#/$defs/Webhook" + }, + "opencolletive": { + "$ref": "#/$defs/OpenCollective" } }, "additionalProperties": false, @@ -2048,6 +2051,24 @@ "additionalProperties": false, "type": "object" }, + "OpenCollective": { + "properties": { + "enabled": { + "type": "boolean" + }, + "slug": { + "type": "string" + }, + "title_template": { + "type": "string" + }, + "message_template": { + "type": "string" + } + }, + "additionalProperties": false, + "type": "object" + }, "Partial": { "properties": { "by": { @@ -2242,7 +2263,8 @@ "type": "array" }, "build": { - "$ref": "#/$defs/Build" + "$ref": "#/$defs/Build", + "description": "deprecated: use builds instead" }, "github_urls": { "$ref": "#/$defs/GitHubURLs"