GitHub is the world's leading platform for software development and version control using Git. It provides a collaborative environment where developers can host and review code, manage projects, and build software together.
With GitHub, you can:
- Host repositories: Store your code in public or private repositories with version control
- Collaborate on code: Use pull requests to propose changes, review code, and merge contributions
- Track issues: Create, assign, and manage issues to organize work and track bugs
- Automate workflows: Use GitHub Actions to build, test, and deploy code automatically
- Manage projects: Organize work with project boards, milestones, and task tracking
- Document code: Create and maintain documentation with GitHub Pages and wikis
In Sim, the GitHub integration enables your agents to interact directly with GitHub repositories and workflows. This allows for powerful automation scenarios such as code review assistance, pull request management, issue tracking, and repository exploration. Your agents can fetch repository data, analyze code changes, post comments on pull requests, and perform other GitHub operations programmatically. This integration bridges the gap between your AI workflows and your development processes, enabling seamless collaboration between your agents and your development team.
Integrate Github into the workflow. Can get get PR details, create PR comment, get repository info, and get latest commit. Can be used in trigger mode to trigger a workflow when a PR is created, commented on, or a commit is pushed.
Fetch PR details including diff and files changed
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner |
repo | string | Yes | Repository name |
pullNumber | number | Yes | Pull request number |
apiKey | string | Yes | GitHub API token |
| Parameter | Type | Description |
|---|
content | string | Human-readable PR summary |
metadata | object | Detailed PR metadata including file changes |
Create comments on GitHub PRs
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner |
repo | string | Yes | Repository name |
body | string | Yes | Comment content |
pullNumber | number | Yes | Pull request number |
path | string | No | File path for review comment |
position | number | No | Line number for review comment |
commentType | string | No | Type of comment (pr_comment or file_comment) |
line | number | No | Line number for review comment |
side | string | No | Side of the diff (LEFT or RIGHT) |
commitId | string | No | The SHA of the commit to comment on |
apiKey | string | Yes | GitHub API token |
| Parameter | Type | Description |
|---|
content | string | Human-readable comment confirmation |
metadata | object | Comment metadata |
Retrieve comprehensive GitHub repository metadata including stars, forks, issues, and primary language. Supports both public and private repositories with optional authentication.
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner (user or organization) |
repo | string | Yes | Repository name |
apiKey | string | Yes | GitHub Personal Access Token |
| Parameter | Type | Description |
|---|
content | string | Human-readable repository summary |
metadata | object | Repository metadata |
Retrieve the latest commit from a GitHub repository
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner (user or organization) |
repo | string | Yes | Repository name |
branch | string | No | Branch name (defaults to the repository's default branch) |
apiKey | string | Yes | GitHub API token |
| Parameter | Type | Description |
|---|
content | string | Human-readable commit summary |
metadata | object | Commit metadata |
Create a comment on a GitHub issue
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner |
repo | string | Yes | Repository name |
issue_number | number | Yes | Issue number |
body | string | Yes | Comment content |
apiKey | string | Yes | GitHub API token |
| Parameter | Type | Description |
|---|
content | string | Human-readable comment confirmation |
metadata | object | Comment metadata |
List all comments on a GitHub issue
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner |
repo | string | Yes | Repository name |
issue_number | number | Yes | Issue number |
since | string | No | Only show comments updated after this ISO 8601 timestamp |
per_page | number | No | Number of results per page (max 100) |
page | number | No | Page number |
apiKey | string | Yes | GitHub API token |
| Parameter | Type | Description |
|---|
content | string | Human-readable comments summary |
metadata | object | Comments list metadata |
Update an existing comment on a GitHub issue or pull request
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner |
repo | string | Yes | Repository name |
comment_id | number | Yes | Comment ID |
body | string | Yes | Updated comment content |
apiKey | string | Yes | GitHub API token |
| Parameter | Type | Description |
|---|
content | string | Human-readable update confirmation |
metadata | object | Updated comment metadata |
Delete a comment on a GitHub issue or pull request
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner |
repo | string | Yes | Repository name |
comment_id | number | Yes | Comment ID |
apiKey | string | Yes | GitHub API token |
| Parameter | Type | Description |
|---|
content | string | Human-readable deletion confirmation |
metadata | object | Deletion result metadata |
List all review comments on a GitHub pull request
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner |
repo | string | Yes | Repository name |
pullNumber | number | Yes | Pull request number |
sort | string | No | Sort by created or updated |
direction | string | No | Sort direction (asc or desc) |
since | string | No | Only show comments updated after this ISO 8601 timestamp |
per_page | number | No | Number of results per page (max 100) |
page | number | No | Page number |
apiKey | string | Yes | GitHub API token |
| Parameter | Type | Description |
|---|
content | string | Human-readable review comments summary |
metadata | object | Review comments list metadata |
Create a new pull request in a GitHub repository
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner |
repo | string | Yes | Repository name |
title | string | Yes | Pull request title |
head | string | Yes | The name of the branch where your changes are implemented |
base | string | Yes | The name of the branch you want the changes pulled into |
body | string | No | Pull request description (Markdown) |
draft | boolean | No | Create as draft pull request |
apiKey | string | Yes | GitHub API token |
| Parameter | Type | Description |
|---|
content | string | Human-readable PR creation confirmation |
metadata | object | Pull request metadata |
Update an existing pull request in a GitHub repository
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner |
repo | string | Yes | Repository name |
pullNumber | number | Yes | Pull request number |
title | string | No | New pull request title |
body | string | No | New pull request description (Markdown) |
state | string | No | New state (open or closed) |
base | string | No | New base branch name |
apiKey | string | Yes | GitHub API token |
| Parameter | Type | Description |
|---|
content | string | Human-readable PR update confirmation |
metadata | object | Updated pull request metadata |
Merge a pull request in a GitHub repository
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner |
repo | string | Yes | Repository name |
pullNumber | number | Yes | Pull request number |
commit_title | string | No | Title for the merge commit |
commit_message | string | No | Extra detail to append to merge commit message |
merge_method | string | No | Merge method: merge, squash, or rebase |
apiKey | string | Yes | GitHub API token |
| Parameter | Type | Description |
|---|
content | string | Human-readable merge confirmation |
metadata | object | Merge result metadata |
List pull requests in a GitHub repository
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner |
repo | string | Yes | Repository name |
state | string | No | Filter by state: open, closed, or all |
head | string | No | Filter by head user or branch name (format: user:ref-name or organization:ref-name) |
base | string | No | Filter by base branch name |
sort | string | No | Sort by: created, updated, popularity, or long-running |
direction | string | No | Sort direction: asc or desc |
per_page | number | No | Results per page (max 100) |
page | number | No | Page number |
apiKey | string | Yes | GitHub API token |
| Parameter | Type | Description |
|---|
content | string | Human-readable list of pull requests |
metadata | object | Pull requests list metadata |
Get the list of files changed in a pull request
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner |
repo | string | Yes | Repository name |
pullNumber | number | Yes | Pull request number |
per_page | number | No | Results per page (max 100) |
page | number | No | Page number |
apiKey | string | Yes | GitHub API token |
| Parameter | Type | Description |
|---|
content | string | Human-readable list of files changed in PR |
metadata | object | PR files metadata |
Close a pull request in a GitHub repository
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner |
repo | string | Yes | Repository name |
pullNumber | number | Yes | Pull request number |
apiKey | string | Yes | GitHub API token |
| Parameter | Type | Description |
|---|
content | string | Human-readable PR close confirmation |
metadata | object | Closed pull request metadata |
Request reviewers for a pull request
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner |
repo | string | Yes | Repository name |
pullNumber | number | Yes | Pull request number |
reviewers | string | Yes | Comma-separated list of user logins to request reviews from |
team_reviewers | string | No | Comma-separated list of team slugs to request reviews from |
apiKey | string | Yes | GitHub API token |
| Parameter | Type | Description |
|---|
content | string | Human-readable reviewer request confirmation |
metadata | object | Requested reviewers metadata |
Get the content of a file from a GitHub repository. Supports files up to 1MB. Content is returned decoded and human-readable.
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner (user or organization) |
repo | string | Yes | Repository name |
path | string | Yes | Path to the file in the repository (e.g., "src/index.ts") |
ref | string | No | Branch name, tag, or commit SHA (defaults to repository default branch) |
apiKey | string | Yes | GitHub Personal Access Token |
| Parameter | Type | Description |
|---|
content | string | Human-readable file information with content preview |
metadata | object | File metadata including name, path, SHA, size, and URLs |
Create a new file in a GitHub repository. The file content will be automatically Base64 encoded. Supports files up to 1MB.
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner (user or organization) |
repo | string | Yes | Repository name |
path | string | Yes | Path where the file will be created (e.g., "src/newfile.ts") |
message | string | Yes | Commit message for this file creation |
content | string | Yes | File content (plain text, will be Base64 encoded automatically) |
branch | string | No | Branch to create the file in (defaults to repository default branch) |
apiKey | string | Yes | GitHub Personal Access Token |
| Parameter | Type | Description |
|---|
content | string | Human-readable file creation confirmation |
metadata | object | File and commit metadata |
Update an existing file in a GitHub repository. Requires the file SHA. Content will be automatically Base64 encoded. Supports files up to 1MB.
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner (user or organization) |
repo | string | Yes | Repository name |
path | string | Yes | Path to the file to update (e.g., "src/index.ts") |
message | string | Yes | Commit message for this file update |
content | string | Yes | New file content (plain text, will be Base64 encoded automatically) |
sha | string | Yes | The blob SHA of the file being replaced (get from github_get_file_content) |
branch | string | No | Branch to update the file in (defaults to repository default branch) |
apiKey | string | Yes | GitHub Personal Access Token |
| Parameter | Type | Description |
|---|
content | string | Human-readable file update confirmation |
metadata | object | Updated file and commit metadata |
Delete a file from a GitHub repository. Requires the file SHA. This operation cannot be undone through the API.
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner (user or organization) |
repo | string | Yes | Repository name |
path | string | Yes | Path to the file to delete (e.g., "src/oldfile.ts") |
message | string | Yes | Commit message for this file deletion |
sha | string | Yes | The blob SHA of the file being deleted (get from github_get_file_content) |
branch | string | No | Branch to delete the file from (defaults to repository default branch) |
apiKey | string | Yes | GitHub Personal Access Token |
| Parameter | Type | Description |
|---|
content | string | Human-readable file deletion confirmation |
metadata | object | Deletion confirmation and commit metadata |
Get the contents of a directory in a GitHub repository. Returns a list of files and subdirectories. Use empty path or omit to get root directory contents.
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner (user or organization) |
repo | string | Yes | Repository name |
path | string | No | Directory path (e.g., "src/components"). Leave empty for root directory. |
ref | string | No | Branch name, tag, or commit SHA (defaults to repository default branch) |
apiKey | string | Yes | GitHub Personal Access Token |
| Parameter | Type | Description |
|---|
content | string | Human-readable directory tree listing |
metadata | object | Directory contents metadata |
List all branches in a GitHub repository. Optionally filter by protected status and control pagination.
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner (user or organization) |
repo | string | Yes | Repository name |
protected | boolean | No | Filter branches by protection status |
per_page | number | No | Number of results per page (max 100, default 30) |
page | number | No | Page number for pagination (default 1) |
apiKey | string | Yes | GitHub Personal Access Token |
| Parameter | Type | Description |
|---|
content | string | Human-readable list of branches |
metadata | object | Branch list metadata |
Get detailed information about a specific branch in a GitHub repository, including commit details and protection status.
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner (user or organization) |
repo | string | Yes | Repository name |
branch | string | Yes | Branch name |
apiKey | string | Yes | GitHub Personal Access Token |
| Parameter | Type | Description |
|---|
content | string | Human-readable branch details |
metadata | object | Branch metadata |
Create a new branch in a GitHub repository by creating a git reference pointing to a specific commit SHA.
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner (user or organization) |
repo | string | Yes | Repository name |
branch | string | Yes | Name of the branch to create |
sha | string | Yes | Commit SHA to point the branch to |
apiKey | string | Yes | GitHub Personal Access Token |
| Parameter | Type | Description |
|---|
content | string | Human-readable branch creation confirmation |
metadata | object | Git reference metadata |
Delete a branch from a GitHub repository by removing its git reference. Protected branches cannot be deleted.
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner (user or organization) |
repo | string | Yes | Repository name |
branch | string | Yes | Name of the branch to delete |
apiKey | string | Yes | GitHub Personal Access Token |
| Parameter | Type | Description |
|---|
content | string | Human-readable deletion confirmation |
metadata | object | Deletion metadata |
Get the branch protection rules for a specific branch, including status checks, review requirements, and restrictions.
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner (user or organization) |
repo | string | Yes | Repository name |
branch | string | Yes | Branch name |
apiKey | string | Yes | GitHub Personal Access Token |
| Parameter | Type | Description |
|---|
content | string | Human-readable branch protection summary |
metadata | object | Branch protection configuration |
Update branch protection rules for a specific branch, including status checks, review requirements, admin enforcement, and push restrictions.
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner (user or organization) |
repo | string | Yes | Repository name |
branch | string | Yes | Branch name |
required_status_checks | object | Yes | Required status check configuration (null to disable). Object with strict (boolean) and contexts (string array) |
enforce_admins | boolean | Yes | Whether to enforce restrictions for administrators |
required_pull_request_reviews | object | Yes | PR review requirements (null to disable). Object with optional required_approving_review_count, dismiss_stale_reviews, require_code_owner_reviews |
restrictions | object | Yes | Push restrictions (null to disable). Object with users (string array) and teams (string array) |
apiKey | string | Yes | GitHub Personal Access Token |
| Parameter | Type | Description |
|---|
content | string | Human-readable branch protection update summary |
metadata | object | Updated branch protection configuration |
Create a new issue in a GitHub repository
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner |
repo | string | Yes | Repository name |
title | string | Yes | Issue title |
body | string | No | Issue description/body |
assignees | string | No | Comma-separated list of usernames to assign to this issue |
labels | string | No | Comma-separated list of label names to add to this issue |
milestone | number | No | Milestone number to associate with this issue |
apiKey | string | Yes | GitHub API token |
| Parameter | Type | Description |
|---|
content | string | Human-readable issue creation confirmation |
metadata | object | Issue metadata |
Update an existing issue in a GitHub repository
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner |
repo | string | Yes | Repository name |
issue_number | number | Yes | Issue number |
title | string | No | New issue title |
body | string | No | New issue description/body |
state | string | No | Issue state (open or closed) |
labels | array | No | Array of label names (replaces all existing labels) |
assignees | array | No | Array of usernames (replaces all existing assignees) |
apiKey | string | Yes | GitHub API token |
| Parameter | Type | Description |
|---|
content | string | Human-readable issue update confirmation |
metadata | object | Updated issue metadata |
List issues in a GitHub repository. Note: This includes pull requests as PRs are considered issues in GitHub
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner |
repo | string | Yes | Repository name |
state | string | No | Filter by state: open, closed, or all (default: open) |
assignee | string | No | Filter by assignee username |
creator | string | No | Filter by creator username |
labels | string | No | Comma-separated list of label names to filter by |
sort | string | No | Sort by: created, updated, or comments (default: created) |
direction | string | No | Sort direction: asc or desc (default: desc) |
per_page | number | No | Results per page (max 100, default: 30) |
page | number | No | Page number (default: 1) |
apiKey | string | Yes | GitHub API token |
| Parameter | Type | Description |
|---|
content | string | Human-readable list of issues |
metadata | object | Issues list metadata |
Get detailed information about a specific issue in a GitHub repository
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner |
repo | string | Yes | Repository name |
issue_number | number | Yes | Issue number |
apiKey | string | Yes | GitHub API token |
| Parameter | Type | Description |
|---|
content | string | Human-readable issue details |
metadata | object | Detailed issue metadata |
Close an issue in a GitHub repository
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner |
repo | string | Yes | Repository name |
issue_number | number | Yes | Issue number |
state_reason | string | No | Reason for closing: completed or not_planned |
apiKey | string | Yes | GitHub API token |
| Parameter | Type | Description |
|---|
content | string | Human-readable issue close confirmation |
metadata | object | Closed issue metadata |
Add labels to an issue in a GitHub repository
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner |
repo | string | Yes | Repository name |
issue_number | number | Yes | Issue number |
labels | string | Yes | Comma-separated list of label names to add to the issue |
apiKey | string | Yes | GitHub API token |
| Parameter | Type | Description |
|---|
content | string | Human-readable labels confirmation |
metadata | object | Labels metadata |
Remove a label from an issue in a GitHub repository
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner |
repo | string | Yes | Repository name |
issue_number | number | Yes | Issue number |
name | string | Yes | Label name to remove |
apiKey | string | Yes | GitHub API token |
| Parameter | Type | Description |
|---|
content | string | Human-readable label removal confirmation |
metadata | object | Remaining labels metadata |
Add assignees to an issue in a GitHub repository
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner |
repo | string | Yes | Repository name |
issue_number | number | Yes | Issue number |
assignees | string | Yes | Comma-separated list of usernames to assign to the issue |
apiKey | string | Yes | GitHub API token |
| Parameter | Type | Description |
|---|
content | string | Human-readable assignees confirmation |
metadata | object | Updated issue metadata with assignees |
Create a new release for a GitHub repository. Specify tag name, target commit, title, description, and whether it should be a draft or prerelease.
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner (user or organization) |
repo | string | Yes | Repository name |
tag_name | string | Yes | The name of the tag for this release |
target_commitish | string | No | Specifies the commitish value that determines where the Git tag is created from. Can be any branch or commit SHA. Defaults to the repository default branch. |
name | string | No | The name of the release |
body | string | No | Text describing the contents of the release (markdown supported) |
draft | boolean | No | true to create a draft (unpublished) release, false to create a published one |
prerelease | boolean | No | true to identify the release as a prerelease, false to identify as a full release |
apiKey | string | Yes | GitHub Personal Access Token |
| Parameter | Type | Description |
|---|
content | string | Human-readable release creation summary |
metadata | object | Release metadata including download URLs |
Update an existing GitHub release. Modify tag name, target commit, title, description, draft status, or prerelease status.
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner (user or organization) |
repo | string | Yes | Repository name |
release_id | number | Yes | The unique identifier of the release |
tag_name | string | No | The name of the tag |
target_commitish | string | No | Specifies the commitish value for where the tag is created from |
name | string | No | The name of the release |
body | string | No | Text describing the contents of the release (markdown supported) |
draft | boolean | No | true to set as draft, false to publish |
prerelease | boolean | No | true to identify as a prerelease, false for a full release |
apiKey | string | Yes | GitHub Personal Access Token |
| Parameter | Type | Description |
|---|
content | string | Human-readable release update summary |
metadata | object | Updated release metadata including download URLs |
List all releases for a GitHub repository. Returns release information including tags, names, and download URLs.
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner (user or organization) |
repo | string | Yes | Repository name |
per_page | number | No | Number of results per page (max 100) |
page | number | No | Page number of the results to fetch |
apiKey | string | Yes | GitHub Personal Access Token |
| Parameter | Type | Description |
|---|
content | string | Human-readable list of releases with summary |
metadata | object | Releases metadata |
Get detailed information about a specific GitHub release by ID. Returns release metadata including assets and download URLs.
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner (user or organization) |
repo | string | Yes | Repository name |
release_id | number | Yes | The unique identifier of the release |
apiKey | string | Yes | GitHub Personal Access Token |
| Parameter | Type | Description |
|---|
content | string | Human-readable release details |
metadata | object | Release metadata including download URLs |
Delete a GitHub release by ID. This permanently removes the release but does not delete the associated Git tag.
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner (user or organization) |
repo | string | Yes | Repository name |
release_id | number | Yes | The unique identifier of the release to delete |
apiKey | string | Yes | GitHub Personal Access Token |
| Parameter | Type | Description |
|---|
content | string | Human-readable deletion confirmation |
metadata | object | Deletion result metadata |
List all workflows in a GitHub repository. Returns workflow details including ID, name, path, state, and badge URL.
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner (user or organization) |
repo | string | Yes | Repository name |
per_page | number | No | Number of results per page (default: 30, max: 100) |
page | number | No | Page number of results to fetch (default: 1) |
apiKey | string | Yes | GitHub Personal Access Token |
| Parameter | Type | Description |
|---|
content | string | Human-readable workflows summary |
metadata | object | Workflows metadata |
Get details of a specific GitHub Actions workflow by ID or filename. Returns workflow information including name, path, state, and badge URL.
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner (user or organization) |
repo | string | Yes | Repository name |
workflow_id | string | Yes | Workflow ID (number) or workflow filename (e.g., "main.yaml") |
apiKey | string | Yes | GitHub Personal Access Token |
| Parameter | Type | Description |
|---|
content | string | Human-readable workflow details |
metadata | object | Workflow metadata |
Trigger a workflow dispatch event for a GitHub Actions workflow. The workflow must have a workflow_dispatch trigger configured. Returns 204 No Content on success.
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner (user or organization) |
repo | string | Yes | Repository name |
workflow_id | string | Yes | Workflow ID (number) or workflow filename (e.g., "main.yaml") |
ref | string | Yes | Git reference (branch or tag name) to run the workflow on |
inputs | object | No | Input keys and values configured in the workflow file |
apiKey | string | Yes | GitHub Personal Access Token |
| Parameter | Type | Description |
|---|
content | string | Confirmation message |
metadata | object | Empty metadata object (204 No Content response) |
List workflow runs for a repository. Supports filtering by actor, branch, event, and status. Returns run details including status, conclusion, and links.
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner (user or organization) |
repo | string | Yes | Repository name |
actor | string | No | Filter by user who triggered the workflow |
branch | string | No | Filter by branch name |
event | string | No | Filter by event type (e.g., push, pull_request, workflow_dispatch) |
status | string | No | Filter by status (queued, in_progress, completed, waiting, requested, pending) |
per_page | number | No | Number of results per page (default: 30, max: 100) |
page | number | No | Page number of results to fetch (default: 1) |
apiKey | string | Yes | GitHub Personal Access Token |
| Parameter | Type | Description |
|---|
content | string | Human-readable workflow runs summary |
metadata | object | Workflow runs metadata |
Get detailed information about a specific workflow run by ID. Returns status, conclusion, timing, and links to the run.
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner (user or organization) |
repo | string | Yes | Repository name |
run_id | number | Yes | Workflow run ID |
apiKey | string | Yes | GitHub Personal Access Token |
| Parameter | Type | Description |
|---|
content | string | Human-readable workflow run details |
metadata | object | Workflow run metadata |
Cancel a workflow run. Returns 202 Accepted if cancellation is initiated, or 409 Conflict if the run cannot be cancelled (already completed).
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner (user or organization) |
repo | string | Yes | Repository name |
run_id | number | Yes | Workflow run ID to cancel |
apiKey | string | Yes | GitHub Personal Access Token |
| Parameter | Type | Description |
|---|
content | string | Cancellation status message |
metadata | object | Cancellation metadata |
Rerun a workflow run. Optionally enable debug logging for the rerun. Returns 201 Created on success.
| Parameter | Type | Required | Description |
|---|
owner | string | Yes | Repository owner (user or organization) |
repo | string | Yes | Repository name |
run_id | number | Yes | Workflow run ID to rerun |
enable_debug_logging | boolean | No | Enable debug logging for the rerun (default: false) |
apiKey | string | Yes | GitHub Personal Access Token |
| Parameter | Type | Description |
|---|
content | string | Rerun confirmation message |
metadata | object | Rerun metadata |
List GitHub Projects V2 for an organization or user. Returns up to 20 projects with their details including ID, title, number, URL, and status.
| Parameter | Type | Required | Description |
|---|
owner_type | string | Yes | Owner type: "org" for organization or "user" for user |
owner_login | string | Yes | Organization or user login name |
apiKey | string | Yes | GitHub Personal Access Token with project read permissions |
| Parameter | Type | Description |
|---|
content | string | Human-readable list of projects |
metadata | object | Projects metadata |
Get detailed information about a specific GitHub Project V2 by its number. Returns project details including ID, title, description, URL, and status.
| Parameter | Type | Required | Description |
|---|
owner_type | string | Yes | Owner type: "org" for organization or "user" for user |
owner_login | string | Yes | Organization or user login name |
project_number | number | Yes | Project number |
apiKey | string | Yes | GitHub Personal Access Token with project read permissions |
| Parameter | Type | Description |
|---|
content | string | Human-readable project details |
metadata | object | Project metadata |
Create a new GitHub Project V2. Requires the owner Node ID (not login name). Returns the created project with ID, title, and URL.
| Parameter | Type | Required | Description |
|---|
owner_id | string | Yes | Owner Node ID (format: PVT_... or MDQ6...). Use GitHub GraphQL API to get this ID from organization or user login. |
title | string | Yes | Project title |
apiKey | string | Yes | GitHub Personal Access Token with project write permissions |
| Parameter | Type | Description |
|---|
content | string | Human-readable confirmation message |
metadata | object | Created project metadata |
Update an existing GitHub Project V2. Can update title, description, visibility (public), or status (closed). Requires the project Node ID.
| Parameter | Type | Required | Description |
|---|
project_id | string | Yes | Project Node ID (format: PVT_...) |
title | string | No | New project title |
shortDescription | string | No | New project short description |
project_public | boolean | No | Set project visibility (true = public, false = private) |
closed | boolean | No | Set project status (true = closed, false = open) |
apiKey | string | Yes | GitHub Personal Access Token with project write permissions |
| Parameter | Type | Description |
|---|
content | string | Human-readable confirmation message |
metadata | object | Updated project metadata |
Delete a GitHub Project V2. This action is permanent and cannot be undone. Requires the project Node ID.
| Parameter | Type | Required | Description |
|---|
project_id | string | Yes | Project Node ID (format: PVT_...) |
apiKey | string | Yes | GitHub Personal Access Token with project admin permissions |
| Parameter | Type | Description |
|---|
content | string | Human-readable confirmation message |
metadata | object | Deleted project metadata |
- Category:
tools
- Type:
github