Fix Empty GITHUB_ACTION

This commit is contained in:
Ethan Chiu
2020-08-03 20:37:05 -04:00
parent 7b608e3e92
commit 2838dfa45c

View File

@@ -61,7 +61,7 @@ namespace GitHub.Runner.Worker.Handlers
var compositeGitHubContext = new GitHubContext();
foreach (var pair in githubContext)
{
compositeGitHubContext[pair.Key] = pair.Value;
compositeGitHubContext[pair.Key] = pair.Value.Clone();
}
foreach (Pipelines.ActionStep actionStep in actionSteps)