Documentation
¶
Overview ¶
Package github provides utilities for interacting with the GitHub API.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client wraps the GitHub API client.
type PRRequest ¶
type PRRequest struct {
Owner string // GitHub repository owner (required)
Repo string // GitHub repository name (required)
BaseBranch string // Base branch for the PR (required, e.g., "main")
HeadBranch string // Feature branch to create (required)
Title string // PR title (required)
Body string // PR body/description
Files []string // Files to commit (required, must not be empty)
}
PRRequest contains the parameters for creating a pull request. All fields except Body are required.
Click to show internal directories.
Click to hide internal directories.