Skip to content

Commit 555f33e

Browse files
author
github-actions
committed
[CI] Add changes
1 parent 601be57 commit 555f33e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

dist/index.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29981,7 +29981,7 @@ const getTestStatus = (uploadId, apiKey, apiUrl) => __awaiter(void 0, void 0, vo
2998129981
const run = () => __awaiter(void 0, void 0, void 0, function* () {
2998229982
var _a;
2998329983
try {
29984-
const { additionalAppBinaryIds, additionalAppFiles, androidApiLevel, androidDevice, apiKey, apiUrl, appBinaryId, appFilePath, async, config, deviceLocale, downloadArtifacts, env, excludeFlows, excludeTags, googlePlay, ignoreShaCheck, includeTags, iOSVersion, iosDevice, jsonFile, maestroVersion, name, orientation, report, retry, workspaceFolder, x86Arch, runnerType, } = yield (0, params_1.getParameters)();
29984+
const { additionalAppBinaryIds, additionalAppFiles, androidApiLevel, androidDevice, apiKey, apiUrl, appBinaryId, appFilePath, async, config, deviceLocale, downloadArtifacts, env, excludeFlows, excludeTags, googlePlay, ignoreShaCheck, includeTags, iOSVersion, iosDevice, jsonFile, maestroVersion, name, orientation, report, retry, workspaceFolder, x86Arch, runnerType, skipChromeOnboarding, } = yield (0, params_1.getParameters)();
2998529985
const params = {
2998629986
'additional-app-binary-ids': additionalAppBinaryIds,
2998729987
'additional-app-files': additionalAppFiles,
@@ -30011,6 +30011,7 @@ const run = () => __awaiter(void 0, void 0, void 0, function* () {
3001130011
'x86-arch': x86Arch,
3001230012
'runner-type': runnerType,
3001330013
'json-file': jsonFile,
30014+
'skip-chrome-onboarding': skipChromeOnboarding,
3001430015
};
3001530016
let paramsString = Object.keys(params).reduce((acc, key) => {
3001630017
if (!params[key])
@@ -30238,6 +30239,7 @@ function getParameters() {
3023830239
const config = core.getInput('config', { required: false });
3023930240
const runnerType = core.getInput('runner-type', { required: false });
3024030241
const jsonFile = core.getInput('json-file', { required: false }) === 'true';
30242+
const skipChromeOnboarding = core.getInput('skip-chrome-onboarding', { required: false }) === 'true';
3024130243
if (!(appFilePath !== '') !== (appBinaryId !== '')) {
3024230244
throw new Error('Either app-file or app-binary-id must be used');
3024330245
}
@@ -30275,6 +30277,7 @@ function getParameters() {
3027530277
config,
3027630278
runnerType,
3027730279
jsonFile,
30280+
skipChromeOnboarding,
3027830281
};
3027930282
});
3028030283
}

0 commit comments

Comments
 (0)