Documentation
¶
Overview ¶
Package git contains types and engines to work with git repositories.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Changelog ¶
type Changelog struct {
TagName string
ClosedPRs []PullRequest
}
Changelog represents a basic changelog.
type CommitsComparison ¶
CommitsComparison is the result of comparing two commits.
type PullRequest ¶
type PullRequest struct {
Number int `yaml:"number"`
Title string `yaml:"title"`
Body string `yaml:"body"`
Author User `yaml:"author"`
Labels []string `yaml:"labels"`
ClosedAt time.Time `yaml:"closed_at"`
Branch string `yaml:"branch"`
URL string `yaml:"url"`
}
PullRequest represents a pull/merge request from the remote repository.
Click to show internal directories.
Click to hide internal directories.