1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-22 04:08:49 +02:00

chore: schema update

Signed-off-by: Carlos A Becker <caarlos0@gmail.com>
This commit is contained in:
Carlos A Becker 2022-01-10 11:13:30 -03:00
parent 6c04acd3ab
commit 34b7b85aa3
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

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

@ -64,6 +64,10 @@
"telegram": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/Telegram"
},
"webhook": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/Webhook"
}
},
"additionalProperties": false,
@ -760,6 +764,9 @@
},
"skip_tls_verify": {
"type": "boolean"
},
"use_package_registry": {
"type": "boolean"
}
},
"additionalProperties": false,
@ -2378,6 +2385,12 @@
"id": {
"type": "string"
},
"ids": {
"items": {
"type": "string"
},
"type": "array"
},
"name_template": {
"type": "string"
},
@ -2440,6 +2453,35 @@
},
"additionalProperties": false,
"type": "object"
},
"Webhook": {
"properties": {
"enabled": {
"type": "boolean"
},
"skip_tls_verify": {
"type": "boolean"
},
"message_template": {
"type": "string"
},
"endpoint_url": {
"type": "string"
},
"headers": {
"patternProperties": {
".*": {
"type": "string"
}
},
"type": "object"
},
"content_type": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object"
}
}
}