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 93163ee commit 4f62f5fCopy full SHA for 4f62f5f
src/ActionsImporter/Commands/GitHub/Forecast.cs
@@ -36,6 +36,12 @@ public Forecast(string[] args) : base(args)
36
IsRequired = false,
37
};
38
39
+ private static readonly Option<FileInfo> IncludeFrom = new("--include-from")
40
+ {
41
+ Description = "The file path containing a list of line-delimited repository names to include in the forecast.",
42
+ IsRequired = false,
43
+ };
44
+
45
private static readonly Option<FileInfo[]> SourceFilePath = new("--source-file-path")
46
{
47
Description = "The file path(s) to existing jobs data.",
@@ -48,6 +54,7 @@ public Forecast(string[] args) : base(args)
48
54
AccessToken,
49
55
Organization,
50
56
Repository,
57
+ IncludeFrom,
51
58
SourceFilePath
52
59
);
53
60
}
0 commit comments