Forgejo · Schema

ActionTask

ActionTask represents a ActionTask

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
created_at string
display_title string
event string
head_branch string
head_sha string
id integer
name string
run_number integer
run_started_at string
status string
updated_at string
url string
workflow_id string
View JSON Schema on GitHub

JSON Schema

actiontask.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ActionTask",
  "description": "ActionTask represents a ActionTask",
  "type": "object",
  "properties": {
    "created_at": {
      "type": "string",
      "format": "date-time",
      "x-go-name": "CreatedAt"
    },
    "display_title": {
      "type": "string",
      "x-go-name": "DisplayTitle"
    },
    "event": {
      "type": "string",
      "x-go-name": "Event"
    },
    "head_branch": {
      "type": "string",
      "x-go-name": "HeadBranch"
    },
    "head_sha": {
      "type": "string",
      "x-go-name": "HeadSHA"
    },
    "id": {
      "type": "integer",
      "format": "int64",
      "x-go-name": "ID"
    },
    "name": {
      "type": "string",
      "x-go-name": "Name"
    },
    "run_number": {
      "type": "integer",
      "format": "int64",
      "x-go-name": "RunNumber"
    },
    "run_started_at": {
      "type": "string",
      "format": "date-time",
      "x-go-name": "RunStartedAt"
    },
    "status": {
      "type": "string",
      "x-go-name": "Status"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "x-go-name": "UpdatedAt"
    },
    "url": {
      "type": "string",
      "x-go-name": "URL"
    },
    "workflow_id": {
      "type": "string",
      "x-go-name": "WorkflowID"
    }
  },
  "x-go-package": "forgejo.org/modules/structs"
}