UNPKG

deliverybot

Version:

Controls and configures deployments using the GitHub API.

44 lines (43 loc) 1.25 kB
{ "$id": "https://example.com/card.schema.json", "$schema": "http://json-schema.org/draft-07/schema#", "description": "Configuration housed at .github/deploy.yml", "type": "object", "patternProperties": { ".*": { "type": "object", "properties": { "auto_deploy_on": { "type": "string" }, "transient_environment": { "type": "boolean" }, "production_environment": { "type": "boolean" }, "required_contexts": { "type": "array", "items": { "type": "string" } }, "environment": { "type": "string" }, "description": { "type": "string" }, "task": { "type": "string" }, "payload": { "type": "object" }, "auto_merge": { "type": "boolean" } } } } }