revert back

This commit is contained in:
Ethan Chiu
2020-07-07 12:44:11 -04:00
parent 5d6114548e
commit 4ccac8c0e2

View File

@@ -95,7 +95,6 @@ namespace GitHub.Runner.Worker
case "runs": case "runs":
actionDefinition.Execution = ConvertRuns(executionContext, context, actionPair.Value); actionDefinition.Execution = ConvertRuns(executionContext, context, actionPair.Value);
break; break;
default: default:
Trace.Info($"Ignore action property {propertyName}."); Trace.Info($"Ignore action property {propertyName}.");
break; break;
@@ -426,7 +425,7 @@ namespace GitHub.Runner.Worker
{ {
return new CompositeActionExecutionData() return new CompositeActionExecutionData()
{ {
Steps = stepsLoaded Steps = stepsLoaded,
}; };
} }
} }