From a4ba4ec93d78dd2fa1d6f6d5a3f17dcc8795f552 Mon Sep 17 00:00:00 2001 From: Will Norris Date: Thu, 30 Jan 2014 11:14:21 -0800 Subject: [PATCH] add State field to IssueRequest --- github/issues.go | 1 + 1 file changed, 1 insertion(+) diff --git a/github/issues.go b/github/issues.go index 1134d3f..b9efd36 100644 --- a/github/issues.go +++ b/github/issues.go @@ -47,6 +47,7 @@ type IssueRequest struct { Body *string `json:"body,omitempty"` Labels []string `json:"labels,omitempty"` Assignee *string `json:"assignee,omitempty"` + State *string `json:"state,omitempty"` // TODO(willnorris): milestone here too! }