send path when resolving actions (#1250)

This commit is contained in:
Thomas Boop
2021-08-11 09:48:32 -04:00
committed by GitHub
parent ce68f3b167
commit 53fd7161e2
2 changed files with 8 additions and 0 deletions

View File

@@ -610,6 +610,7 @@ namespace GitHub.Runner.Worker
{ {
NameWithOwner = repositoryReference.Name, NameWithOwner = repositoryReference.Name,
Ref = repositoryReference.Ref, Ref = repositoryReference.Ref,
Path = repositoryReference.Path,
}; };
}) })
.ToList(); .ToList();

View File

@@ -18,5 +18,12 @@ namespace GitHub.DistributedTask.WebApi
get; get;
set; set;
} }
[DataMember]
public string Path
{
get;
set;
}
} }
} }