From b79b0b7d4a233aba682ab90ce4f60dc4db0978aa Mon Sep 17 00:00:00 2001 From: Ondrej Kupka Date: Tue, 8 Apr 2014 12:34:59 +0200 Subject: [PATCH] Update PullRequest to include statuses_url Signed-off-by: Ondrej Kupka --- github/pulls.go | 1 + 1 file changed, 1 insertion(+) diff --git a/github/pulls.go b/github/pulls.go index 633e4f4..b3d382a 100644 --- a/github/pulls.go +++ b/github/pulls.go @@ -38,6 +38,7 @@ type PullRequest struct { Deletions *int `json:"deletions,omitempty"` ChangedFiles *int `json:"changed_files,omitempty"` HTMLURL *string `json:"html_url,omitempty"` + StatusesURL *string `json:"statuses_url,omitempty"` // TODO(willnorris): add head and base once we have a Commit struct defined somewhere }