Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions src/docs-assembler/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@
using ProcNet;
using ProcNet.Std;

var configFile = Path.Combine(Paths.Root.FullName, "src/docs-assembler/conf.yml");
var config = AssemblyConfiguration.Deserialize(File.ReadAllText(configFile));

var services = new ServiceCollection();
services.AddGitHubActionsCore();
services.AddLogging(x =>
Expand Down Expand Up @@ -47,7 +44,7 @@
app.Add<RepositoryCommands>("repo");

var githubActions = ConsoleApp.ServiceProvider.GetService<ICoreService>();
var command = githubActions?.GetInput("command");
var command = githubActions?.GetInput("COMMAND");
if (!string.IsNullOrEmpty(command))
args = command.Split(' ');

Expand Down
Loading