From df7810ab63a94547256d90b42e6efb04f458e86b Mon Sep 17 00:00:00 2001 From: Timothy Rule <34501912+trulede@users.noreply.github.com> Date: Sun, 15 Feb 2026 14:42:59 +0100 Subject: [PATCH] fix: copy watch when merging tasks during import (#2686) --- taskfile/ast/task.go | 1 + 1 file changed, 1 insertion(+) diff --git a/taskfile/ast/task.go b/taskfile/ast/task.go index 3d71ce71..9895ccac 100644 --- a/taskfile/ast/task.go +++ b/taskfile/ast/task.go @@ -242,6 +242,7 @@ func (t *Task) DeepCopy() *Task { Requires: t.Requires.DeepCopy(), Namespace: t.Namespace, FullName: t.FullName, + Watch: t.Watch, Failfast: t.Failfast, } return c