GitHub Actions · JSON Structure

Github Actions Runner Group Structure

Type: object Properties: 7

RunnerGroup is a JSON Structure definition published by GitHub Actions, describing 7 properties. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

id name visibility default runners_url inherited allows_public_repositories

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "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"
    }
  }
}