Skip to content

Commit

Permalink
added to lowercase on setting github.action_status (actions#1944)
Browse files Browse the repository at this point in the history
  • Loading branch information
nikola-jokic authored Nov 22, 2022
1 parent 6b84521 commit 9122fe7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Runner.Worker/Handlers/CompositeActionHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ private async Task RunStepsAsync(List<IStep> embeddedSteps, ActionRunStage stage

// Set action_status to the success of the current composite action
var actionResult = ExecutionContext.Result?.ToActionResult() ?? ActionResult.Success;
step.ExecutionContext.SetGitHubContext("action_status", actionResult.ToString());
step.ExecutionContext.SetGitHubContext("action_status", actionResult.ToString().ToLowerInvariant());

// Initialize env context
Trace.Info("Initialize Env context for embedded step");
Expand Down

0 comments on commit 9122fe7

Please sign in to comment.