GitHubSettings

pydantic model gafaelfawr.config.GitHubSettings

pydantic model of GitHub configuration.

Parameters:

data (Any)

Show JSON schema
{
   "title": "GitHubSettings",
   "description": "pydantic model of GitHub configuration.",
   "type": "object",
   "properties": {
      "clientId": {
         "title": "Clientid",
         "type": "string"
      },
      "clientSecretFile": {
         "format": "path",
         "title": "Clientsecretfile",
         "type": "string"
      }
   },
   "required": [
      "clientId",
      "clientSecretFile"
   ]
}

Fields:
field clientId: str [Required] (name 'client_id')

Client ID of the GitHub App.

field clientSecretFile: Path [Required] (name 'client_secret_file')

File containing secret for the GitHub App.