
- When the API endpoint `/repos/{owner}/{repo}/actions/workflows/{workflowname}/dispatches` is used to launch a workflow, it currently returns no data; `/repos/{owner}/{repo}/actions/tasks` can be used to track the progress of a workflow, but you need at least that workflow's run_id and the quantity of its child jobs. Tracking workflow progress is especially important if you want to chain together multiple workflows that exist within different repositories, which is desired for https://codeberg.org/forgejo/forgejo/issues/6312. - Make it possible to track the progress of manually triggered workflows by modifying the `/repos/{owner}/{repo}/actions/workflows/{workflowname}/dispatches` to return a JSON object containing the triggered workflow's id and a list of its child job names. Co-authored-by: Andrii Chyrva <achyrva@amcbridge.com> Co-authored-by: Andrii Chyrva <andrii.s.chyrva@hotmail.com> Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7193 Reviewed-by: Gusted <gusted@noreply.codeberg.org> Co-authored-by: markturney <markturney@gmail.com> Co-committed-by: markturney <markturney@gmail.com>
63 lines
1.6 KiB
Go
63 lines
1.6 KiB
Go
// Copyright 2024 The Forgejo Authors.
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
package actions
|
|
|
|
import (
|
|
"net/url"
|
|
|
|
actions_service "code.gitea.io/gitea/services/actions"
|
|
context_module "code.gitea.io/gitea/services/context"
|
|
)
|
|
|
|
func ManualRunWorkflow(ctx *context_module.Context) {
|
|
workflowID := ctx.FormString("workflow")
|
|
if len(workflowID) == 0 {
|
|
ctx.ServerError("workflow", nil)
|
|
return
|
|
}
|
|
|
|
ref := ctx.FormString("ref")
|
|
if len(ref) == 0 {
|
|
ctx.ServerError("ref", nil)
|
|
return
|
|
}
|
|
|
|
if empty, err := ctx.Repo.GitRepo.IsEmpty(); err != nil {
|
|
ctx.ServerError("IsEmpty", err)
|
|
return
|
|
} else if empty {
|
|
ctx.NotFound("IsEmpty", nil)
|
|
return
|
|
}
|
|
|
|
workflow, err := actions_service.GetWorkflowFromCommit(ctx.Repo.GitRepo, ref, workflowID)
|
|
if err != nil {
|
|
ctx.ServerError("GetWorkflowFromCommit", err)
|
|
return
|
|
}
|
|
|
|
location := ctx.Repo.RepoLink + "/actions?workflow=" + url.QueryEscape(workflowID) +
|
|
"&actor=" + url.QueryEscape(ctx.FormString("actor")) +
|
|
"&status=" + url.QueryEscape(ctx.FormString("status"))
|
|
|
|
formKeyGetter := func(key string) string {
|
|
formKey := "inputs[" + key + "]"
|
|
return ctx.Req.PostFormValue(formKey)
|
|
}
|
|
|
|
_, _, err = workflow.Dispatch(ctx, formKeyGetter, ctx.Repo.Repository, ctx.Doer)
|
|
if err != nil {
|
|
if actions_service.IsInputRequiredErr(err) {
|
|
ctx.Flash.Error(ctx.Locale.Tr("actions.workflow.dispatch.input_required", err.(actions_service.InputRequiredErr).Name))
|
|
ctx.Redirect(location)
|
|
return
|
|
}
|
|
ctx.ServerError("workflow.Dispatch", err)
|
|
return
|
|
}
|
|
|
|
// forward to the page of the run which was just created
|
|
ctx.Flash.Info(ctx.Locale.Tr("actions.workflow.dispatch.success"))
|
|
ctx.Redirect(location)
|
|
}
|