Forgejo · Schema

DispatchWorkflowRun

DispatchWorkflowRun represents a workflow run

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
id integer the workflow run id
jobs array the jobs name
run_number integer a unique number for each run of a repository
View JSON Schema on GitHub

JSON Schema

dispatchworkflowrun.json Raw ↑
{
  "$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"
}