From a4b0af1698ab1856de857fc8a85f2d38c1390d3a Mon Sep 17 00:00:00 2001 From: Ondrej Kupka Date: Tue, 8 Apr 2014 12:52:48 +0200 Subject: [PATCH] Add Context field to RepoStatus Signed-off-by: Ondrej Kupka --- github/repos_statuses.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/github/repos_statuses.go b/github/repos_statuses.go index 0ba3312..34bdea3 100644 --- a/github/repos_statuses.go +++ b/github/repos_statuses.go @@ -25,6 +25,9 @@ type RepoStatus struct { // Description is a short high level summary of the status. Description *string `json:"description,omitempty"` + // A string label to differentiate this status from the statuses of other systems. + Context *string `json:"context,omitempty"` + Creator *User `json:"creator,omitempty"` CreatedAt *time.Time `json:"created_at,omitempty"` UpdatedAt *time.Time `json:"updated_at,omitempty"`