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 @@ -16,6 +16,7 @@ module.exports = {
16
16
} ,
17
17
18
18
BROWSERSTACK_TEMPLATE : {
19
- DETAILS_API_URL : 'https://integrate.browserstack.com/api/ci-tools/v1/builds/{runId}/rebuild/details?tool=github-actions&as_bot=true' ,
19
+ // DETAILS_API_URL: 'https://integrate.browserstack.com/api/ci-tools/v1/builds/{runId}/rebuild/details?tool=github-actions&as_bot=true',
20
+ DETAILS_API_URL : 'https://8c12-2405-201-6806-d09b-4d8a-335-3b92-fcbe.ngrok-free.app/api/ci-tools/v1/builds/{runId}/rebuild/details?unique_user_id=10000&tool=github-actions&as_bot=true' ,
20
21
} ,
21
22
} ;
Original file line number Diff line number Diff line change @@ -22,7 +22,8 @@ module.exports = {
22
22
},
23
23
24
24
BROWSERSTACK_TEMPLATE: {
25
- DETAILS_API_URL: 'https://integrate.browserstack.com/api/ci-tools/v1/builds/{runId}/rebuild/details?tool=github-actions&as_bot=true',
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://8c12-2405-201-6806-d09b-4d8a-335-3b92-fcbe.ngrok-free.app/api/ci-tools/v1/builds/{runId}/rebuild/details?unique_user_id=10000&tool=github-actions&as_bot=true',
26
27
},
27
28
};
28
29
@@ -9466,6 +9467,7 @@ class ActionInput {
9466
9467
if (variables && typeof variables === 'object') {
9467
9468
// Iterate over all keys in variables and set them as environment variables
9468
9469
Object.keys(variables).forEach((key) => {
9470
+ core.info(`Setting env var - ${key}: ${variables[key]}`);
9469
9471
core.exportVariable(key, variables[key]);
9470
9472
});
9471
9473
}
Original file line number Diff line number Diff line change @@ -137,6 +137,7 @@ class ActionInput {
137
137
if ( variables && typeof variables === 'object' ) {
138
138
// Iterate over all keys in variables and set them as environment variables
139
139
Object . keys ( variables ) . forEach ( ( key ) => {
140
+ core . info ( `Setting env var - ${ key } : ${ variables [ key ] } ` ) ;
140
141
core . exportVariable ( key , variables [ key ] ) ;
141
142
} ) ;
142
143
}
You can’t perform that action at this time.
0 commit comments