Workflow

A GitHub Actions workflow

APIs.ioEngineeringPlatform

Properties

Name Type Description
id integer
node_id string
name string
path string
state string
created_at string
updated_at string
url string
html_url string
badge_url string
deleted_at string
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-workflow-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/workflow",
  "title": "Workflow",
  "description": "A GitHub Actions workflow",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "example": 5
    },
    "node_id": {
      "type": "string",
      "example": "MDg6V29ya2Zsb3cxMg=="
    },
    "name": {
      "type": "string",
      "example": "CI"
    },
    "path": {
      "type": "string",
      "example": "ruby.yaml"
    },
    "state": {
      "type": "string",
      "example": "active",
      "enum": [
        "active",
        "deleted",
        "disabled_fork",
        "disabled_inactivity",
        "disabled_manually"
      ]
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "example": "2019-12-06T14:20:20.000Z"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "example": "2019-12-06T14:20:20.000Z"
    },
    "url": {
      "type": "string",
      "example": "https://api.github.com/repos/actions/setup-ruby/workflows/5"
    },
    "html_url": {
      "type": "string",
      "example": "https://github.com/actions/setup-ruby/blob/master/.github/workflows/ruby.yaml"
    },
    "badge_url": {
      "type": "string",
      "example": "https://github.com/actions/setup-ruby/workflows/CI/badge.svg"
    },
    "deleted_at": {
      "type": "string",
      "format": "date-time",
      "example": "2019-12-06T14:20:20.000Z"
    }
  },
  "required": [
    "id",
    "node_id",
    "name",
    "path",
    "state",
    "url",
    "html_url",
    "badge_url",
    "created_at",
    "updated_at"
  ]
}