get_github_release
Retrieve the latest two releases for a specified GitHub repository, ensuring quick access to version details and updates for integration workflows.
Instructions
Get the latest 2 releases from a GitHub repository
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| owner | Yes | Owner of the repository (username or organization) | |
| repo | Yes | Name of the repository | |
| token | No | GitHub personal access token (optional) | 
Input Schema (JSON Schema)
{
  "properties": {
    "owner": {
      "description": "Owner of the repository (username or organization)",
      "type": "string"
    },
    "repo": {
      "description": "Name of the repository",
      "type": "string"
    },
    "token": {
      "description": "GitHub personal access token (optional)",
      "type": "string"
    }
  },
  "required": [
    "owner",
    "repo"
  ],
  "type": "object"
}