Speakeasy · Schema

GithubTriggerActionRequest

A request to trigger an action on a GitHub target

AIDocumentationMCPPlatformSDKsTerraformTesting

Properties

Name Type Description
org string The GitHub organization name
repo_name string The GitHub repository name
target_name string The target name for the action
gen_lock_id string The generation lock ID
set_version string A version to override the SDK too in workflow dispatch
force boolean Force an SDK generation
View JSON Schema on GitHub

JSON Schema

speakeasy-githubtriggeractionrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GithubTriggerActionRequest",
  "title": "GithubTriggerActionRequest",
  "description": "A request to trigger an action on a GitHub target",
  "type": "object",
  "properties": {
    "org": {
      "type": "string",
      "description": "The GitHub organization name"
    },
    "repo_name": {
      "type": "string",
      "description": "The GitHub repository name"
    },
    "target_name": {
      "type": "string",
      "description": "The target name for the action"
    },
    "gen_lock_id": {
      "type": "string",
      "description": "The generation lock ID"
    },
    "set_version": {
      "type": "string",
      "description": "A version to override the SDK too in workflow dispatch"
    },
    "force": {
      "type": "boolean",
      "description": "Force an SDK generation"
    }
  },
  "required": [
    "org",
    "repo_name",
    "gen_lock_id"
  ]
}