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 |
JSON Schema
{
"$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"
}
}
}