From 00a736d9cc5e3fe6e2c9b9776d8915c9edc18b51 Mon Sep 17 00:00:00 2001 From: Ethan Chiu Date: Fri, 19 Jun 2020 14:43:31 -0400 Subject: [PATCH] Remove unnecessary code --- src/Runner.Worker/StepsRunner.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/Runner.Worker/StepsRunner.cs b/src/Runner.Worker/StepsRunner.cs index 9fc323c86..e75d2e106 100644 --- a/src/Runner.Worker/StepsRunner.cs +++ b/src/Runner.Worker/StepsRunner.cs @@ -68,11 +68,6 @@ namespace GitHub.Runner.Worker var step = jobContext.JobSteps[0]; jobContext.JobSteps.RemoveAt(0); var nextStep = jobContext.JobSteps.Count > 0 ? jobContext.JobSteps[0] : null; - // TODO: Fix this temporary workaround for Composite Actions - if (!string.IsNullOrEmpty(Environment.GetEnvironmentVariable("TESTING_COMPOSITE_ACTIONS_ALPHA"))) - { - nextStep = null; - } Trace.Info($"Processing step: DisplayName='{step.DisplayName}'"); ArgUtil.NotNull(step.ExecutionContext, nameof(step.ExecutionContext));