Versions in this module Expand all Collapse all v0 v0.1.1 Jun 26, 2026 v0.1.0 Jun 26, 2026 Changes in this version + type Client struct + func New(cfg config.GitHubConfig) (*Client, error) + func (c *Client) GetIssue(ctx context.Context, r domain.Repo, id string) (domain.Issue, error) + func (c *Client) GetPR(ctx context.Context, r domain.Repo, number int) (domain.PullRequest, error) + func (c *Client) ListChecks(ctx context.Context, r domain.Repo, number int) ([]domain.Check, error) + func (c *Client) ListComments(ctx context.Context, r domain.Repo, number int) ([]domain.Comment, error) + func (c *Client) Name() string + func (c *Client) OpenPR(ctx context.Context, r domain.Repo, o domain.OpenPROpts) (domain.PullRequest, error) + func (c *Client) PRForBranch(ctx context.Context, r domain.Repo, branch string) (*domain.PullRequest, error) + func (c *Client) PostComment(ctx context.Context, r domain.Repo, number int, body string) (domain.Comment, error) + func (c *Client) WatchChecks(ctx context.Context, r domain.Repo, number int, ...) (domain.CheckSummary, error)