Skip to content

Commit 952882f

Browse files
authored
Fix log typo in task.go (#26337)
Signed-off-by: cassiozareck <[email protected]>
1 parent 2d3924d commit 952882f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

models/actions/task.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ func CreateTaskForRunner(ctx context.Context, runner *ActionRunner) (*ActionTask
278278
if gots, err := jobparser.Parse(job.WorkflowPayload); err != nil {
279279
return nil, false, fmt.Errorf("parse workflow of job %d: %w", job.ID, err)
280280
} else if len(gots) != 1 {
281-
return nil, false, fmt.Errorf("workflow of job %d: not signle workflow", job.ID)
281+
return nil, false, fmt.Errorf("workflow of job %d: not single workflow", job.ID)
282282
} else {
283283
_, workflowJob = gots[0].Job()
284284
}

0 commit comments

Comments
 (0)