GitHub Actions · Schema

RunnerGroup

Properties

Name Type Description
id integer
name string
visibility string
default boolean
runners_url string
inherited boolean
allows_public_repositories boolean
View JSON Schema on GitHub

JSON Schema

github-actions-runner-group-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "RunnerGroup",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer"
    },
    "name": {
      "type": "string"
    },
    "visibility": {
      "type": "string"
    },
    "default": {
      "type": "boolean"
    },
    "runners_url": {
      "type": "string"
    },
    "inherited": {
      "type": "boolean"
    },
    "allows_public_repositories": {
      "type": "boolean"
    }
  }
}