Forgejo · Schema

RegisterRunnerOptions declares the accepted options for registering runners.

GitSource Code ManagementSelf-HostedDevOpsCI/CDOpen SourceForgeRepositoriesIssuesPull Requests

Properties

Name Type Description
description string Description of the runner to register.
ephemeral boolean Register as ephemeral runner https://forgejo.org/docs/latest/admin/actions/security/#ephemeral-runner
name string Name of the runner to register. The name of the runner does not have to be unique.
View JSON Schema on GitHub

JSON Schema

registerrunneroptions.json Raw ↑
{
  "$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"
}