From 89bac30450583c43a1ae5a6a5e17de36b015fffb Mon Sep 17 00:00:00 2001 From: Shawn Smith Date: Thu, 10 Oct 2013 16:14:43 +0900 Subject: [PATCH] add HTMLURL (html_url) to PullRequest --- github/pulls.go | 1 + 1 file changed, 1 insertion(+) diff --git a/github/pulls.go b/github/pulls.go index cfb6c45..1c6579a 100644 --- a/github/pulls.go +++ b/github/pulls.go @@ -37,6 +37,7 @@ type PullRequest struct { Additions *int `json:"additions,omitempty"` Deletions *int `json:"deletions,omitempty"` ChangedFiles *int `json:"changed_files,omitempty"` + HTMLURL *string `json:"html_url,omitempty"` // TODO(willnorris): add head and base once we have a Commit struct defined somewhere }