Skip to content

Commit 6ddd855

Browse files
committed
test
1 parent b641fd5 commit 6ddd855

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

browserstack-report-action/dist/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff 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");

browserstack-report-action/src/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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,

browserstack-report-action/src/services/ReportService.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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");

0 commit comments

Comments
 (0)