diff --git a/src/Runner.Worker/ActionManager.cs b/src/Runner.Worker/ActionManager.cs index b34082c86..d157f8fd3 100644 --- a/src/Runner.Worker/ActionManager.cs +++ b/src/Runner.Worker/ActionManager.cs @@ -397,7 +397,8 @@ namespace GitHub.Runner.Worker } else if (definition.Data.Execution.ExecutionType == ActionExecutionType.Composite && !String.IsNullOrEmpty(Environment.GetEnvironmentVariable("TESTING_COMPOSITE_ACTIONS_ALPHA"))) { - // Don't do anything for now + var compositeAction = definition.Data.Execution as CompositeActionExecutionData; + Trace.Info($"Action steps: {compositeAction.Steps}."); } else { diff --git a/src/Runner.Worker/ExecutionContext.cs b/src/Runner.Worker/ExecutionContext.cs index a8ee9c9b0..11116e96e 100644 --- a/src/Runner.Worker/ExecutionContext.cs +++ b/src/Runner.Worker/ExecutionContext.cs @@ -291,8 +291,6 @@ namespace GitHub.Runner.Worker // placed after the queued composite steps // This will take only O(n+m) time which would be just as efficient if we refactored the code of JobSteps to a PriorityQueue // This temp Queue is created in the CompositeActionHandler. - - Trace.Info("Adding Composite Action Step"); var newGuid = Guid.NewGuid(); step.ExecutionContext = Root.CreateChild(newGuid, step.DisplayName, newGuid.ToString("N"), null, null); step.ExecutionContext.ExpressionValues["inputs"] = inputsData; @@ -319,7 +317,6 @@ namespace GitHub.Runner.Worker Root.JobSteps.Clear(); foreach (var cs in steps) { - Trace.Info($"EnqueueAllCompositeSteps : Adding Composite action step {cs}"); Root.JobSteps.Enqueue(cs); } foreach (var s in temp) @@ -332,7 +329,6 @@ namespace GitHub.Runner.Worker Root.JobSteps = new Queue(); foreach (var cs in steps) { - Trace.Info($"EnqueueAllCompositeSteps : Adding Composite action step {cs}"); Root.JobSteps.Enqueue(cs); } }