Skip to content

Commit

Permalink
asdf
Browse files Browse the repository at this point in the history
  • Loading branch information
MattParkerDev committed Jul 8, 2024
1 parent 9eee21f commit ba777ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/ParallelPipelines/Host/DependencyInjection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ public static IServiceCollection AddParallelPipelines(this IServiceCollection se
services.AddHostedService<PipelineApplication>();
services.AddSingleton<OrchestratorService>();
services.AddSingleton<PostStepService>();
services.AddSingleton<PreStepService>();
services.AddSingleton<StepContainerProvider>();
services.AddSingleton<ConsoleRenderer>();

Expand Down
2 changes: 1 addition & 1 deletion src/ParallelPipelines/Host/Services/PreStepService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

namespace ParallelPipelines.Host.Services;

public class PreStepService(GithubActionTableSummaryService githubActionTableSummaryService, IOptions<PipelineConfig> pipelineConfig, GithubActionGanttSummaryService githubActionGanttSummaryService, IAnsiConsole console, IPipelineContext pipelineContext)
public class PreStepService(IOptions<PipelineConfig> pipelineConfig, IAnsiConsole console, IPipelineContext pipelineContext)
{
private readonly IAnsiConsole _console = console;
private readonly PipelineConfig _pipelineConfig = pipelineConfig.Value;
Expand Down

0 comments on commit ba777ae

Please sign in to comment.