From 7c6d6561b58c42fae2199d0af59c0b3789ddbe16 Mon Sep 17 00:00:00 2001 From: actions-user Date: Mon, 29 May 2023 17:38:53 +0000 Subject: [PATCH] chore: docs auto-update --- www/docs/static/schema.json | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/www/docs/static/schema.json b/www/docs/static/schema.json index 207684e7a..8426fc4f3 100644 --- a/www/docs/static/schema.json +++ b/www/docs/static/schema.json @@ -2303,12 +2303,36 @@ "type": "boolean" }, "base": { - "type": "string" + "$ref": "#/$defs/PullRequestBase" } }, "additionalProperties": false, "type": "object" }, + "PullRequestBase": { + "oneOf": [ + { + "type": "string" + }, + { + "$schema": "https://json-schema.org/draft/2020-12/schema", + "$id": "https://github.com/goreleaser/goreleaser/pkg/config/pull-request-base", + "properties": { + "owner": { + "type": "string" + }, + "name": { + "type": "string" + }, + "branch": { + "type": "string" + } + }, + "additionalProperties": false, + "type": "object" + } + ] + }, "Reddit": { "properties": { "enabled": { @@ -3059,6 +3083,14 @@ "type": "integer" } ] + }, + "parse_mode": { + "type": "string", + "enum": [ + "MarkdownV2", + "HTML" + ], + "default": "MarkdownV2" } }, "additionalProperties": false,