{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "RegisterRunnerOptions declares the accepted options for registering runners.", "type": "object", "required": [ "name" ], "properties": { "description": { "description": "Description of the runner to register.", "type": "string", "x-go-name": "Description" }, "ephemeral": { "description": "Register as ephemeral runner https://forgejo.org/docs/latest/admin/actions/security/#ephemeral-runner", "type": "boolean", "x-go-name": "Ephemeral" }, "name": { "description": "Name of the runner to register. The name of the runner does not have to be unique.", "type": "string", "x-go-name": "Name" } }, "x-go-package": "forgejo.org/modules/structs" }