From 54ec5b4986cbd98954bf3fc5e8fd975969cc33b2 Mon Sep 17 00:00:00 2001 From: 6543 <6543@obermui.de> Date: Sun, 14 Jun 2026 09:29:35 +0200 Subject: [PATCH] cli exec: have uniq prefix for each workflow (#6716) Co-authored-by: qwerty287 <80460567+qwerty287@users.noreply.github.com> --- cli/exec/exec.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cli/exec/exec.go b/cli/exec/exec.go index 26f7ffb87..4a3d7bae7 100644 --- a/cli/exec/exec.go +++ b/cli/exec/exec.go @@ -169,14 +169,13 @@ func runExec(ctx context.Context, c *cli.Command, yamls []*builder.YamlFile, rep privilegedPlugins := c.StringSlice("plugins-privileged") - // emulate server prefix for volume/network naming + // prefix for the local-execution workspace volume name prefix := "wp_" + ulid.Make().String() // build compiler options — mirrors server behavior compilerOpts := []compiler.Option{ compiler.WithEscalated(privilegedPlugins...), compiler.WithNetworks(c.StringSlice("network")...), - compiler.WithPrefix(prefix), compiler.WithProxy(compiler.ProxyOptions{ NoProxy: c.String("backend-no-proxy"), HTTPProxy: c.String("backend-http-proxy"),