Fix the response format for actions/workflows. (#35009)

This PR fixes the response format for the OpenAPI Spec of
`ActionsListRepositoryWorkflows`.
It was specified in the OpenAPI spec as returning a `[]*ActionWorkflow`,
but it actually should return a `api.ActionWorkflowResponse`.

The test already expects an `api.ActionWorkflowResponse` like expected.
This commit is contained in:
Scion
2025-07-09 07:32:02 -07:00
repo.diff.committed_by GitHub
repo.diff.parent 55f350542c
repo.diff.commit bb0c84e8c3
repo.diff.stats_desc%!(EXTRA int=2, int=21, int=5)

repo.diff.view_file

@@ -44,5 +44,5 @@ type swaggerResponseActionWorkflow struct {
// swagger:response ActionWorkflowList
type swaggerResponseActionWorkflowList struct {
// in:body
Body []api.ActionWorkflow `json:"body"`
Body api.ActionWorkflowResponse `json:"body"`
}