get_github_action
Retrieve detailed information about a GitHub Action, including inputs and requirements, by specifying owner, repo, and action file path. Integrates with GitHub Action Trigger MCP Server for streamlined workflow management.
Instructions
Get detailed information about a specific GitHub Action, including inputs and their requirements
Input Schema
Name | Required | Description | Default |
---|---|---|---|
owner | Yes | Owner of the action (username or organization) | |
path | No | Path to the action.yml or action.yaml file (usually just 'action.yml') | |
ref | No | Git reference (branch, tag, or commit SHA, default: main) | |
repo | Yes | Repository name of the action | |
token | No | GitHub personal access token (optional) |
Input Schema (JSON Schema)
{
"properties": {
"owner": {
"description": "Owner of the action (username or organization)",
"type": "string"
},
"path": {
"description": "Path to the action.yml or action.yaml file (usually just 'action.yml')",
"type": "string"
},
"ref": {
"description": "Git reference (branch, tag, or commit SHA, default: main)",
"type": "string"
},
"repo": {
"description": "Repository name of the action",
"type": "string"
},
"token": {
"description": "GitHub personal access token (optional)",
"type": "string"
}
},
"required": [
"owner",
"repo"
],
"type": "object"
}