ZelaxyDocs
Tool Integrations
Tool

GitHub

Manage repositories, issues, and pull requests on GitHub

GitHub

Full GitHub integration — manage repos, create issues, open pull requests, search code, and interact with the GitHub API. Supports OAuth and personal access tokens.

Overview

PropertyValue
Typegithub
CategoryTool — Developer
AuthOAuth 2.0 / Personal Access Token

Operations

OperationDescription
Create IssueOpen a new issue
List IssuesGet issues for a repo
Create PROpen a pull request
Search CodeSearch code across repos
Get RepositoryGet repo metadata
List ReposList your repositories
Create CommentComment on issue/PR

Configuration

SettingTypeDescription
GitHub AccountOAuthConnect GitHub
RepositoryShort inputowner/repo format
TitleShort inputIssue/PR title
BodyLong textDescription (Markdown)
LabelsShort inputComma-separated labels
BranchShort inputBranch name for PRs
QueryShort inputSearch query

Outputs

FieldTypeDescription
contentstringResponse data
numbernumberIssue/PR number
urlstringDirect link
datajsonFull API response

Example: Auto Issue from Error Logs

Workflow:

[Starter (webhook: error monitor)] → [Agent: Analyze] → [GitHub: Create Issue]

GitHub Config:

  • Repo: myorg/backend
  • Title: [Auto] {{agent.content.title}}
  • Labels: bug, auto-created
  • Body:
## Error Analysis

{{agent.content.analysis}}

## Stack Trace

{{starter.input.stack}}

Tips

  • Search code is powerful for finding usage patterns across repos
  • PAT tokens are simpler for personal automation; OAuth for team apps
  • Markdown in issues/PRs — use code blocks, task lists, and mentions