[tilo] Add missing 'Name' property in TestAction

IN-699 #comment

Change-Id: Ic8bb1fff58fa5818b01b8ca6b1dafb0638a286b6
diff --git a/tilo/resultstore/entity.go b/tilo/resultstore/entity.go
index dcce44f..01a37e9 100644
--- a/tilo/resultstore/entity.go
+++ b/tilo/resultstore/entity.go
@@ -238,6 +238,7 @@
 // TestAction maps to a ResultStore Action with a child TestAction.  See full docs at:
 // https://github.com/googleapis/googleapis/blob/master/google/devtools/resultstore/v2/action.proto
 type TestAction struct {
+	Name         string
 	ID           string
 	InvocationID string
 	TargetID     string
@@ -251,6 +252,7 @@
 
 func (a TestAction) ToResultStoreAction() *api.Action {
 	return &api.Action{
+		Name: a.Name,
 		Id: &api.Action_Id{
 			InvocationId:    a.InvocationID,
 			TargetId:        a.TargetID,