File tree Expand file tree Collapse file tree 3 files changed +2
-4
lines changed
browserstack-report-action Expand file tree Collapse file tree 3 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -38172,7 +38172,7 @@ async function run() {
3817238172
3817338173 const initialParams = {
3817438174 originalBuildName: buildName,
38175- buildStartedAt: Date.now().toString(), // Changed to timestamp string
38175+ // buildStartedAt: Date.now().toString(), // Changed to timestamp string
3817638176 requestingCi: constants.CI_SYSTEM.GITHUB_ACTIONS,
3817738177 reportFormat: [constants.REPORT_FORMAT.BASIC_HTML, constants.REPORT_FORMAT.RICH_HTML],
3817838178 requestType: constants.REPORT_REQUEST_STATE.FIRST,
@@ -38283,7 +38283,6 @@ class ReportService {
3828338283 Authorization: this.authHeader,
3828438284 },
3828538285 });
38286- core.info(`params fetched successfully: ${params}}`);
3828738286 if (response.status < 200 || response.status > 299) {
3828838287 core.info(`Error fetching report: ${response.status}`);
3828938288 return ReportService.errorResponse(response?.data?.errorMessage || "Something Went Wrong while Fetching report");
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ async function run() {
2121
2222 const initialParams = {
2323 originalBuildName : buildName ,
24- buildStartedAt : Date . now ( ) . toString ( ) , // Changed to timestamp string
24+ // buildStartedAt: Date.now().toString(), // Changed to timestamp string
2525 requestingCi : constants . CI_SYSTEM . GITHUB_ACTIONS ,
2626 reportFormat : [ constants . REPORT_FORMAT . BASIC_HTML , constants . REPORT_FORMAT . RICH_HTML ] ,
2727 requestType : constants . REPORT_REQUEST_STATE . FIRST ,
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ class ReportService {
1616 Authorization : this . authHeader ,
1717 } ,
1818 } ) ;
19- core . info ( `params fetched successfully: ${ params } }` ) ;
2019 if ( response . status < 200 || response . status > 299 ) {
2120 core . info ( `Error fetching report: ${ response . status } ` ) ;
2221 return ReportService . errorResponse ( response ?. data ?. errorMessage || "Something Went Wrong while Fetching report" ) ;
You can’t perform that action at this time.
0 commit comments