G
GithubApi
Arcade Native

GetGithubReleaseDetails

GithubApi.GetGithubReleaseDetails

Arcade Native Built and maintained by Arcade with full support
Supported by Arcade

Description

Retrieve details of a specific GitHub release.

Use this tool to obtain details about a specific release from a GitHub repository. This includes the upload URL for release assets, which is a hypermedia resource.

Input Parameters

{
  "parameters": [
    {
      "name": "release_id",
      "required": true,
      "inferrable": true,
      "description": "The unique identifier for the specific GitHub release being queried.",
      "value_schema": {
        "val_type": "integer"
      }
    },
    {
      "name": "repository_name",
      "required": true,
      "inferrable": true,
      "description": "The name of the GitHub repository. It is not case sensitive.",
      "value_schema": {
        "val_type": "string"
      }
    },
    {
      "name": "repository_owner",
      "required": true,
      "inferrable": true,
      "description": "The account owner of the repository. The name is not case sensitive.",
      "value_schema": {
        "val_type": "string"
      }
    }
  ]
}

Output

{
  "description": "Response from the API endpoint 'repos/get-release'.",
  "value_schema": {
    "val_type": "json"
  },
  "available_modes": [
    "value",
    "error"
  ]
}