We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5524878 commit 12493ffCopy full SHA for 12493ff
routers/web/repo/actions/actions.go
@@ -71,7 +71,8 @@ func List(ctx *context.Context) {
71
ctx.ServerError("GetBranchCommit", err)
72
return
73
}
74
- prepareWorkflowDispatchTemplate(ctx, commit)
+ workflows := prepareWorkflowDispatchTemplate(ctx, commit)
75
+ prepareWorkflowList(ctx, workflows)
76
ctx.HTML(http.StatusOK, tplListActions)
77
78
@@ -97,8 +98,7 @@ func WorkflowDispatchInputs(ctx *context.Context) {
97
98
ctx.ServerError("GetTagCommit/GetBranchCommit", err)
99
100
- workflows := prepareWorkflowDispatchTemplate(ctx, commit)
101
- prepareWorkflowList(ctx, workflows)
+ prepareWorkflowDispatchTemplate(ctx, commit)
102
ctx.HTML(http.StatusOK, tplDispatchInputsActions)
103
104
0 commit comments