File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -164,7 +164,8 @@ async function sendCompletedStatusReport(
164164
165165 const initStatusReport : InitStatusReport = {
166166 ...statusReportBase ,
167- tools_input : effectiveToolsInput || "" ,
167+ tools_input : getOptionalInput ( "tools" ) || "" ,
168+ computed_tools_input : effectiveToolsInput || "" ,
168169 tools_resolved_version : toolsVersion ,
169170 tools_source : toolsSource || ToolsSource . Unknown ,
170171 workflow_languages : workflowLanguages || "" ,
Original file line number Diff line number Diff line change @@ -68,7 +68,8 @@ async function sendCompletedStatusReport(
6868
6969 const initStatusReport : InitStatusReport = {
7070 ...statusReportBase ,
71- tools_input : effectiveToolsInput || "" ,
71+ tools_input : getOptionalInput ( "tools" ) || "" ,
72+ computed_tools_input : effectiveToolsInput || "" ,
7273 tools_resolved_version : toolsVersion ,
7374 tools_source : toolsSource || ToolsSource . Unknown ,
7475 workflow_languages : "" ,
Original file line number Diff line number Diff line change @@ -482,6 +482,8 @@ export async function sendStatusReport<S extends StatusReportBase>(
482482export interface InitStatusReport extends StatusReportBase {
483483 /** Value given by the user as the "tools" input. */
484484 tools_input : string ;
485+ /** The effective tools input that was used, after applying defaults and repository properties. */
486+ computed_tools_input : string ;
485487 /** Version of the bundle used. */
486488 tools_resolved_version : string ;
487489 /** Where the bundle originated from. */
You can’t perform that action at this time.
0 commit comments