get_release_asset
Retrieve a specific asset from a GitHub release by providing the repository owner, repo name, and asset ID. Streamlines access to release artifacts for automation or integration workflows.
Instructions
Get a release asset from a GitHub repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
asset_id | Yes | The ID of the asset | |
owner | Yes | Repository owner (username or organization) | |
repo | Yes | Repository name |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"asset_id": {
"description": "The ID of the asset",
"type": "number"
},
"owner": {
"description": "Repository owner (username or organization)",
"type": "string"
},
"repo": {
"description": "Repository name",
"type": "string"
}
},
"required": [
"owner",
"repo",
"asset_id"
],
"type": "object"
}