1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-04 03:11:55 +02:00

docs: update

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
This commit is contained in:
Carlos Alexandro Becker 2023-05-29 18:17:15 +00:00
parent a80a4011ad
commit 1e56d38ef9
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

29
www/docs/static/schema-pro.json generated vendored
View File

@ -2554,12 +2554,39 @@
"type": "boolean"
},
"base": {
"type": "string"
"$ref": "#/$defs/PullRequestBase"
},
"draft": {
"type": "boolean"
}
},
"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": {