Skip to content

Commit db71adf

Browse files
cassiozareckGiteaBot
authored andcommitted
Fix log typo in task.go (go-gitea#26337)
Signed-off-by: cassiozareck <[email protected]>
1 parent 3e9475b commit db71adf

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
@@ -281,7 +281,7 @@ func CreateTaskForRunner(ctx context.Context, runner *ActionRunner) (*ActionTask
281281
if gots, err := jobparser.Parse(job.WorkflowPayload); err != nil {
282282
return nil, false, fmt.Errorf("parse workflow of job %d: %w", job.ID, err)
283283
} else if len(gots) != 1 {
284-
return nil, false, fmt.Errorf("workflow of job %d: not signle workflow", job.ID)
284+
return nil, false, fmt.Errorf("workflow of job %d: not single workflow", job.ID)
285285
} else {
286286
_, workflowJob = gots[0].Job()
287287
}

0 commit comments

Comments
 (0)