From 9011afd5abf05f598dddf6c7cf48ea57b16adbe7 Mon Sep 17 00:00:00 2001 From: YuyaKoda <29038315+ponkio-o@users.noreply.github.com> Date: Wed, 31 Jul 2024 01:52:04 +0900 Subject: [PATCH] fix: added `created_at` to WorkflowJobPayload (#195) --- github/payload.go | 1 + 1 file changed, 1 insertion(+) diff --git a/github/payload.go b/github/payload.go index d3e343f..87658e7 100644 --- a/github/payload.go +++ b/github/payload.go @@ -6480,6 +6480,7 @@ type WorkflowJobPayload struct { HTMLURL string `json:"html_url"` Status string `json:"status"` Conclusion string `json:"conclusion"` + CreatedAt time.Time `json:"created_at"` StartedAt time.Time `json:"started_at"` CompletedAt time.Time `json:"completed_at"` Name string `json:"name"`