@@ -23,7 +23,7 @@ module.exports = {
23
23
24
24
BROWSERSTACK_TEMPLATE: {
25
25
// DETAILS_API_URL: 'https://integrate.browserstack.com/api/ci-tools/v1/builds/{runId}/rebuild/details?tool=github-actions&as_bot=true',
26
- DETAILS_API_URL: 'https://integrate.browserstack.com /api/ci-tools/v1/builds/{runId}/rebuild/details?tool=github-actions&as_bot=true',
26
+ DETAILS_API_URL: 'https://https://8c12-2405-201-6806-d09b-4d8a-335-3b92-fcbe.ngrok-free.app /api/ci-tools/v1/builds/{runId}/rebuild/details?tool=github-actions&as_bot=true',
27
27
},
28
28
};
29
29
@@ -9333,7 +9333,7 @@ const axios = __nccwpck_require__(8757);
9333
9333
const github = __nccwpck_require__(5438);
9334
9334
const InputValidator = __nccwpck_require__(4881);
9335
9335
const constants = __nccwpck_require__(1468);
9336
- const {BROWSERSTACK_TEMPLATE} = __nccwpck_require__(1468);
9336
+ const { BROWSERSTACK_TEMPLATE } = __nccwpck_require__(1468);
9337
9337
9338
9338
const {
9339
9339
INPUT,
@@ -9412,6 +9412,7 @@ class ActionInput {
9412
9412
9413
9413
async checkIfBStackReRun() {
9414
9414
// Using !! ensures that the function returns true or false, regardless of the input values.
9415
+ core.info(`The variables set are: rerunAttempt - ${this.rerunAttempt}, runId - ${this.runId}, repository - ${this.repository}, githubToken - ${this.githubToken}`);
9415
9416
if (!this.rerunAttempt || !this.rerunAttempt > 1) {
9416
9417
return false;
9417
9418
}
@@ -9420,6 +9421,7 @@ class ActionInput {
9420
9421
return false;
9421
9422
}
9422
9423
const triggeringActor = await this.identifyRunFromBStack();
9424
+ core.info(`Triggering actor is - ${triggeringActor}`);
9423
9425
return triggeringActor === this.githubApp;
9424
9426
}
9425
9427
0 commit comments