Documentation ¶
Index ¶
- func IsHTTPUnauthorized(err error) bool
- func Ptr[T any](v T) *T
- type Client
- func (c *Client) ConvertPullRequestToDraft(ctx context.Context, id string) (*PullRequest, error)
- func (c *Client) CreatePullRequest(ctx context.Context, input githubv4.CreatePullRequestInput) (*PullRequest, error)
- func (c *Client) GetPullRequests(ctx context.Context, input GetPullRequestsInput) (*GetPullRequestsPage, error)
- func (c *Client) GetRepositoryBySlug(ctx context.Context, slug string) (*Repository, error)
- func (c *Client) MarkPullRequestReadyForReview(ctx context.Context, id string) (*PullRequest, error)
- func (c *Client) OrganizationTeam(ctx context.Context, organizationLogin string, teamSlug string) (*Team, error)
- func (c *Client) PullRequest(ctx context.Context, id string) (*PullRequest, error)
- func (c *Client) RepoPullRequests(ctx context.Context, opts RepoPullRequestOpts) (RepoPullRequestsResponse, error)
- func (c *Client) RequestReviews(ctx context.Context, input githubv4.RequestReviewsInput) (*PullRequest, error)
- func (c *Client) UpdatePullRequest(ctx context.Context, input githubv4.UpdatePullRequestInput) (*PullRequest, error)
- func (c *Client) User(ctx context.Context, login string) (*User, error)
- func (c *Client) Viewer(ctx context.Context) (*Viewer, error)
- type GetPullRequestsInput
- type GetPullRequestsPage
- type PageInfo
- type PullRequest
- type PullRequestOpts
- type RepoPullRequestOpts
- type RepoPullRequestsResponse
- type Repository
- type Team
- type User
- type Viewer
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func IsHTTPUnauthorized ¶ added in v0.0.29
IsHTTPUnauthorized returns true if the given error is an HTTP 401 Unauthorized error.
func Ptr ¶
func Ptr[T any](v T) *T
Ptr returns a pointer to the argument. It's a convenience function to make working with the API easier: since Go disallows pointers-to-literals, and optional input fields are expressed as pointers, this function can be used to easily set optional fields to non-nil primitives. For example, githubv4.CreatePullRequestInput{Draft: Ptr(true)}
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
func NewClient ¶
NewClient creates a new GitHub client. It takes configuration from the global config.Av.GitHub variable.
func (*Client) ConvertPullRequestToDraft ¶ added in v0.0.8
func (*Client) CreatePullRequest ¶
func (c *Client) CreatePullRequest( ctx context.Context, input githubv4.CreatePullRequestInput, ) (*PullRequest, error)
func (*Client) GetPullRequests ¶ added in v0.0.4
func (c *Client) GetPullRequests( ctx context.Context, input GetPullRequestsInput, ) (*GetPullRequestsPage, error)
func (*Client) GetRepositoryBySlug ¶
func (*Client) MarkPullRequestReadyForReview ¶ added in v0.0.8
func (*Client) OrganizationTeam ¶ added in v0.0.28
func (c *Client) OrganizationTeam( ctx context.Context, organizationLogin string, teamSlug string, ) (*Team, error)
OrganizationTeam returns information about the given team in the given organization.
func (*Client) PullRequest ¶
func (*Client) RepoPullRequests ¶
func (c *Client) RepoPullRequests( ctx context.Context, opts RepoPullRequestOpts, ) (RepoPullRequestsResponse, error)
func (*Client) RequestReviews ¶ added in v0.0.28
func (c *Client) RequestReviews( ctx context.Context, input githubv4.RequestReviewsInput, ) (*PullRequest, error)
RequestReviews requests reviews from the given users on the given pull request.
func (*Client) UpdatePullRequest ¶ added in v0.0.6
func (c *Client) UpdatePullRequest( ctx context.Context, input githubv4.UpdatePullRequestInput, ) (*PullRequest, error)
type GetPullRequestsInput ¶ added in v0.0.4
type GetPullRequestsPage ¶ added in v0.0.4
type GetPullRequestsPage struct { PageInfo PullRequests []PullRequest }
type PageInfo ¶
PageInfo contains information about the current/previous/next page of results when using paginated APIs.
type PullRequest ¶
type PullRequest struct { ID string Number int64 HeadRefName string BaseRefName string IsDraft bool Permalink string State githubv4.PullRequestState Title string Body string PRIVATE_MergeCommit struct { Oid string } `graphql:"mergeCommit"` PRIVATE_TimelineItems struct { Nodes []struct { ClosedEvent struct { Closer struct { Commit struct { Oid string } `graphql:"... on Commit"` } } `graphql:"... on ClosedEvent"` } } `graphql:"timelineItems(last: 10, itemTypes: CLOSED_EVENT)"` }
func (*PullRequest) BaseBranchName ¶
func (p *PullRequest) BaseBranchName() string
func (*PullRequest) GetMergeCommit ¶ added in v0.0.7
func (p *PullRequest) GetMergeCommit() string
func (*PullRequest) HeadBranchName ¶
func (p *PullRequest) HeadBranchName() string
type PullRequestOpts ¶
type RepoPullRequestOpts ¶
type RepoPullRequestsResponse ¶
type RepoPullRequestsResponse struct { PageInfo TotalCount int64 PullRequests []PullRequest }