From 4cb06b9edb32c5957409076317910ce5036c1205 Mon Sep 17 00:00:00 2001 From: Ethan Chiu Date: Thu, 11 Jun 2020 10:46:36 -0400 Subject: [PATCH] Add comments of alternative mapping solution --- src/Runner.Worker/ActionManifestManager.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Runner.Worker/ActionManifestManager.cs b/src/Runner.Worker/ActionManifestManager.cs index 6c2ee77af..7137bacac 100644 --- a/src/Runner.Worker/ActionManifestManager.cs +++ b/src/Runner.Worker/ActionManifestManager.cs @@ -365,6 +365,11 @@ namespace GitHub.Runner.Worker case "steps": stepsToken = run.Value.AssertMapping("steps"); // Maybe insert a for loop here instead since MappingToken is not supposed to be used in HandlerFactory.cs + // var steps = run.Value.AssertMapping("steps"); + // foreach (var s in steps) { + // // Create list of steps + // // + // } break; default: Trace.Info($"Ignore run property {runsKey}.");