From 5c35bc0f5bd22766e0b592b55a21a4bfd0f4399c Mon Sep 17 00:00:00 2001 From: ponkio-o <29038315+ponkio-o@users.noreply.github.com> Date: Wed, 19 Jun 2024 19:10:28 +0900 Subject: [PATCH] fix: added created_at to WorkflowJobPayload --- 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"`