From d36491ca1065e0775d504e9b3bf4c184d124509d Mon Sep 17 00:00:00 2001 From: Ryan Mast Date: Sat, 4 Sep 2021 08:36:22 -0700 Subject: [PATCH] Add created field to ListWorkflowRunsOptions --- github/actions_workflow_runs.go | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/github/actions_workflow_runs.go b/github/actions_workflow_runs.go index 64274a3d037..b2c40d47c5b 100644 --- a/github/actions_workflow_runs.go +++ b/github/actions_workflow_runs.go @@ -49,10 +49,11 @@ type WorkflowRuns struct { // ListWorkflowRunsOptions specifies optional parameters to ListWorkflowRuns. type ListWorkflowRunsOptions struct { - Actor string `url:"actor,omitempty"` - Branch string `url:"branch,omitempty"` - Event string `url:"event,omitempty"` - Status string `url:"status,omitempty"` + Actor string `url:"actor,omitempty"` + Branch string `url:"branch,omitempty"` + Event string `url:"event,omitempty"` + Status string `url:"status,omitempty"` + Created string `url:"created,omitempty"` ListOptions }