DispatchWorkflowRun represents a workflow run
{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "DispatchWorkflowRun", "description": "DispatchWorkflowRun represents a workflow run", "type": "object", "properties": { "id": { "description": "the workflow run id", "type": "integer", "format": "int64", "x-go-name": "ID" }, "jobs": { "description": "the jobs name", "type": "array", "items": { "type": "string" }, "x-go-name": "Jobs" }, "run_number": { "description": "a unique number for each run of a repository", "type": "integer", "format": "int64", "x-go-name": "RunNumber" } }, "x-go-package": "forgejo.org/modules/structs" }