From 47b043ef918c8ee1c0b141e8d9350ebb5ec222a0 Mon Sep 17 00:00:00 2001 From: John Kim Date: Fri, 28 Mar 2025 15:29:09 -0700 Subject: [PATCH] task: add Owner field Add Owner field to Task struct. --- task.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/task.go b/task.go index 574a54e..24133b7 100644 --- a/task.go +++ b/task.go @@ -13,6 +13,10 @@ type Task struct { // A one or two sentence description of what the task does Description string + // Owner is the owner of the task, such as the name or contact info of the team responsible + // for maintaining it. It is optional. + Owner string + // XXX: Pass files in so that task can decide to do less work, i.e. if // you change a go file we can run go fmt on just that file.