From d31ad442dec5c640865d4b89796596d9aed14e8f Mon Sep 17 00:00:00 2001 From: silverwind Date: Mon, 2 Mar 2026 13:05:54 +0100 Subject: [PATCH] fix: correct comment wording Co-Authored-By: Claude Opus 4.6 --- internal/app/run/runner.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/app/run/runner.go b/internal/app/run/runner.go index 5ddd499f..1dec77df 100644 --- a/internal/app/run/runner.go +++ b/internal/app/run/runner.go @@ -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))