Documentation
¶
Overview ¶
Package gitlab provides a SDK and helpers for the gitlab provider.
Index ¶
Constants ¶
View Source
const DefaultTimeout = 60 * time.Second
DefaultTimeout is the default timeout for Gitlab API requests.
View Source
const ( // ErrNotFound indicates the resource does not exists. ErrNotFound errors.Kind = "resource not found (HTTP Status: 404)" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
// BaseURL is the base URL used to construct the final URL of endpoints.
// If not set, it uses CI_API_V4_URL environment variable.
BaseURL string
// HTTPClient sets the HTTP client used and then allows for advanced
// connection reuse schemes. If not set, a new http.Client is used.
HTTPClient *http.Client
// Token is the Gitlab token (usually provided by the GITLAB_TOKEN environment variable.
Token string
ProjectID int64
Group string
Project string
}
Client is a Gitlab API HTTP client wrapper.
func (*Client) MRForCommit ¶
MRForCommit returns the with first Merge Requests associated with the provided commit SHA.
func (*Client) MRParticipants ¶
MRParticipants returns the the participants for the given MR.
func (*Client) MRReviewers ¶
MRReviewers returns the the reviewers for the given MR.
type MR ¶
type MR struct {
ID int `json:"id"`
IID int `json:"iid"`
ProjectID int `json:"project_id"`
Title string `json:"title"`
Description string `json:"description,omitempty"`
State string `json:"state"`
CreatedAt string `json:"created_at,omitempty"`
UpdatedAt string `json:"updated_at,omitempty"`
TargetBranch string `json:"target_branch"`
SourceBranch string `json:"source_branch"`
Upvotes int `json:"upvotes"`
Downvotes int `json:"downvotes"`
Author User `json:"author"`
Labels []string `json:"labels"`
Draft bool `json:"draft"`
WorkInProgress bool `json:"work_in_progress"`
SHA string `json:"sha"`
MergeStatus string `json:"merge_status"`
DetailedMergeStatus string `json:"detailed_merge_status"`
WebURL string `json:"web_url"`
Assignees []User `json:"assignees"`
}
MR is a Gitlab Merge Request.
Click to show internal directories.
Click to hide internal directories.