1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-08 03:31:59 +02:00

docs: update schema pro

Signed-off-by: Carlos A Becker <caarlos0@gmail.com>
This commit is contained in:
Carlos A Becker 2021-11-28 11:29:20 -03:00
parent 1051f53409
commit 85281bcec1
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

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

@ -363,6 +363,21 @@
"additionalProperties": false,
"type": "object"
},
"ChangeLogGroup": {
"properties": {
"title": {
"type": "string"
},
"regexp": {
"type": "string"
},
"order": {
"type": "integer"
}
},
"additionalProperties": false,
"type": "object"
},
"Changelog": {
"properties": {
"filters": {
@ -377,6 +392,13 @@
},
"use": {
"type": "string"
},
"groups": {
"items": {
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/ChangeLogGroup"
},
"type": "array"
}
},
"additionalProperties": false,
@ -601,6 +623,9 @@
"properties": {
"glob": {
"type": "string"
},
"name_template": {
"type": "string"
}
},
"additionalProperties": false,
@ -1855,6 +1880,15 @@
},
"footer": {
"type": "string"
},
"mode": {
"enum": [
"append",
"prepend",
"replace"
],
"type": "string",
"default": "keep-existing"
}
},
"additionalProperties": false,
@ -2292,6 +2326,9 @@
},
"replace": {
"type": "boolean"
},
"hooks": {
"$ref": "#/definitions/BuildHookConfig"
}
},
"additionalProperties": false,