Skip to content

Commit 8bf09b9

Browse files
committed
update
1 parent a7df3c4 commit 8bf09b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/actions/cleanup.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ func DeleteRun(ctx context.Context, run *actions_model.ActionRun) error {
168168
return err
169169
}
170170
jobIDs := container.FilterSlice(jobs, func(j *actions_model.ActionRunJob) (int64, bool) {
171-
return j.ID, j.ID != 0
171+
return j.ID, true
172172
})
173173
tasks := make(actions_model.TaskList, 0)
174174
if len(jobIDs) > 0 {

0 commit comments

Comments
 (0)