From 93cd62f29b437cac7bcbb658c216e8b0a2c9c2a9 Mon Sep 17 00:00:00 2001 From: Robin Olsen Date: Wed, 25 Feb 2026 15:44:20 +0100 Subject: [PATCH] should be able to have any assignee --- cmd/survey/tasks/gitTask.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/survey/tasks/gitTask.go b/cmd/survey/tasks/gitTask.go index db1401f..d1b6d81 100644 --- a/cmd/survey/tasks/gitTask.go +++ b/cmd/survey/tasks/gitTask.go @@ -95,7 +95,7 @@ func (t *GitTask) Validate(ctx context.Context) (bool, error) { return false, errors.New("setup issue not found") } - if t.setupIssue.Assignee != "Me" { + if t.setupIssue.Assignee == "" { return false, fmt.Errorf("issue not assigned to self") }