From a9a686f8e58fb67376cf19b639a389d7a5df0c59 Mon Sep 17 00:00:00 2001 From: Riley Martine Date: Mon, 8 Jul 2019 17:29:19 -0400 Subject: [PATCH] Reorder field in StatusPayload to match schema --- github/payload.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github/payload.go b/github/payload.go index 0e1b344..ffc5ae0 100644 --- a/github/payload.go +++ b/github/payload.go @@ -5336,8 +5336,8 @@ type StatusPayload struct { Description *string `json:"description"` State string `json:"state"` Commit struct { - NodeID string `json:"node_id"` Sha string `json:"sha"` + NodeID string `json:"node_id"` Commit struct { Author struct { Name string `json:"name"`