github_action
Search GitHub repositories, get details, manage issues and pull requests, and retrieve user or gist data using the GitHub REST API.
Instructions
Interact with the GitHub REST API: search repos, get repo details, list and create issues, list PRs, get user profiles, list gists, and search code.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | Action: search_repos, get_repo, list_issues, create_issue, list_prs, get_user, list_gists, search_code. | |
| access_token | No | GitHub personal access token (PAT). Public data works without a token. | |
| query | No | Search query string (for search_repos and search_code). | |
| owner | No | Repository owner login. | |
| repo | No | Repository name. | |
| title | No | Issue title (for create_issue). | |
| body | No | Issue body text (for create_issue). | |
| state | No | Filter by state: open, closed, all. | |
| labels | No | Comma-separated label names to filter by. | |
| username | No | GitHub username (for get_user and list_gists). | |
| per_page | No | Results per page (max 100). | |
| page | No | Page number. |