We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e18d71 commit 521ba18Copy full SHA for 521ba18
src/docs-assembler/Program.cs
@@ -16,9 +16,6 @@
16
using ProcNet;
17
using ProcNet.Std;
18
19
-var configFile = Path.Combine(Paths.Root.FullName, "src/docs-assembler/conf.yml");
20
-var config = AssemblyConfiguration.Deserialize(File.ReadAllText(configFile));
21
-
22
var services = new ServiceCollection();
23
services.AddGitHubActionsCore();
24
services.AddLogging(x =>
@@ -47,7 +44,7 @@
47
44
app.Add<RepositoryCommands>("repo");
48
45
49
46
var githubActions = ConsoleApp.ServiceProvider.GetService<ICoreService>();
50
-var command = githubActions?.GetInput("command");
+var command = githubActions?.GetInput("COMMAND");
51
if (!string.IsNullOrEmpty(command))
52
args = command.Split(' ');
53
0 commit comments