mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
Needs a Circle API token, which can be found at https://circleci.com/account/api. This is passed under the environmental variable WTF_CIRCLE_API_KEY.
11 lines
380 B
Go
11 lines
380 B
Go
package circleci
|
|
|
|
type Build struct {
|
|
AuthorEmail string `json:"author_email"`
|
|
AuthorName string `json:"author_name"`
|
|
Branch string `json:"branch"`
|
|
BuildNum int `json:"build_num"`
|
|
Reponame string `json:"reponame"`
|
|
Status string `json:"status"`
|
|
}
|