fix: correct comment wording

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
silverwind 2026-03-02 13:05:54 +01:00
parent 97508ed1a8
commit d31ad442de
No known key found for this signature in database
GPG Key ID: 2E62B41C93869443
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ func (r *Runner) run(ctx context.Context, task *runnerv1.Task, reporter *report.
workdirParent := strings.TrimLeft(r.cfg.Container.WorkdirParent, "/")
if r.cfg.Container.BindWorkdir {
// Prepend the task ID to isolate concurrent jobs from the same repo.
// Append the task ID to isolate concurrent jobs from the same repo.
workdirParent = fmt.Sprintf("%s/%d", workdirParent, task.Id)
}
workdir := filepath.FromSlash(fmt.Sprintf("/%s/%s", workdirParent, preset.Repository))