From 6c9dae9ff54269e3021bcff1fd2fbe1e00f23d3d Mon Sep 17 00:00:00 2001 From: Christopher Homberger Date: Tue, 18 Mar 2025 21:07:27 +0100 Subject: [PATCH] fix api result --- modules/structs/repo_actions.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/structs/repo_actions.go b/modules/structs/repo_actions.go index 150302e8b9..eca1382506 100644 --- a/modules/structs/repo_actions.go +++ b/modules/structs/repo_actions.go @@ -115,7 +115,7 @@ type ActionWorkflowRunsResponse struct { // ActionArtifactsResponse returns ActionArtifacts type ActionWorkflowJobsResponse struct { - Entries []*ActionWorkflowJob `json:"workflow_jobs"` + Entries []*ActionWorkflowJob `json:"jobs"` TotalCount int64 `json:"total_count"` }