devapp/owners: add owners for dev.fuzz branch

Change-Id: I71f08445f296d8cac1f07277615033c64598631a
Reviewed-on: https://go-review.googlesource.com/c/build/+/323409
Trust: Katie Hockman <katie@golang.org>
Trust: Dmitri Shuralyov <dmitshur@golang.org>
Run-TryBot: Katie Hockman <katie@golang.org>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Jay Conrod <jayconrod@google.com>
Reviewed-by: Carlos Amedee <carlos@golang.org>
Reviewed-by: Roland Shoemaker <roland@golang.org>
diff --git a/devapp/owners/table.go b/devapp/owners/table.go
index 0641143..0d3d21e 100644
--- a/devapp/owners/table.go
+++ b/devapp/owners/table.go
@@ -89,9 +89,9 @@
 	toolsTeam = gh("golang/tools-team")
 )
 
-// entries is a map of <repo name>/<path> or <domain> to Owner entries.
-// For <repo name>/<path>, there is an implicit prefix of go.googlesource.com.
-// This map should not be modified at runtime.
+// entries is a map of <repo name>/<path>, <domain>, or <branch> to Owner
+// entries. For <repo name>/<path>, there is an implicit prefix of
+// go.googlesource.com. This map should not be modified at runtime.
 var entries = map[string]*Entry{
 	// Go standard library.
 	"go/src/archive/tar": {
@@ -833,6 +833,12 @@
 		Primary: []Owner{dmitshur},
 	},
 
+	// Branches in the Go repository.
+	"dev.fuzz": {
+		Primary:   []Owner{katie, jayconrod},
+		Secondary: []Owner{roland},
+	},
+
 	// Misc. other Go repositories.
 	"gccgo": {
 		Primary:   []Owner{iant},