Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type PullRequest ¶
type PullRequest struct {
Number int `json:"number"`
Title string `json:"title"`
Url string `json:"url"`
Author struct {
Login string `json:"login"`
} `json:"author"`
State PullRequestState `json:"state"`
IsDraft bool `json:"isDraft"`
}
func (PullRequest) PRNumberString ¶
func (pr PullRequest) PRNumberString() string
func (PullRequest) StateString ¶
func (pr PullRequest) StateString() string
type PullRequestState ¶
type PullRequestState string
const ( PullRequestStateOpen PullRequestState = "OPEN" PullRequestStateClosed PullRequestState = "CLOSED" PullRequestStateMerged PullRequestState = "MERGED" )
Click to show internal directories.
Click to hide internal directories.