You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`ignoreTestFailures` (optional) | When tests fail and this option is true then GHA will exit with code 0. By default, GHA will exit with code 1 in case of test failures and 0 for passing tests [possible values: true, false]|`false`|`true`, `false`|
30
30
|`pullFiles` (optional) | Pull files from devices after the test run. The format is `ROOT1:PATH1,ROOT2:PATH2` where ROOT is one of [EXTERNAL_STORAGE, APP_DATA] and PATH is a relative path to the target file or directory. Note: Files with the same name and path from different devices may overwrite each other. | `` |`EXTERNAL_STORAGE:Documents/some-results,APP_DATA:files/my_folder/some_file.txt`|
31
+
|`resultFile` (optional) | Result file path in a machine-readable format. You can specify the format via extension [yaml,json]|`result.json`|`some_result.json`|
32
+
|`branch` (optional) | Branch for run, for example it could be git branch like develop or feature/about-screen | `` |`develop`|
Copy file name to clipboardExpand all lines: action.yml
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -67,6 +67,12 @@ inputs:
67
67
pullFiles:
68
68
description: "Pull files from devices after the test run. The format is 'ROOT1:PATH1,ROOT2:PATH2' where ROOT is one of [EXTERNAL_STORAGE, APP_DATA] and PATH is a relative path to the target file or directory. Example: EXTERNAL_STORAGE:Documents/some-results,APP_DATA:files/my_folder/some_file.txt. Note: Files with the same name and path from different devices may overwrite each other."
69
69
required: false
70
+
resultFile:
71
+
description: "Result file path in a machine-readable format. You can specify the format via extension [yaml,json]. Default file: result.json"
72
+
required: false
73
+
branch:
74
+
description: "Branch for run, for example it could be git branch like develop or feature/about-screen"
0 commit comments