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
Copy file name to clipboardExpand all lines: README.md
+16-15Lines changed: 16 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ It lets you run your flows on [devicecloud.dev](https://devicecloud.dev) to save
9
9
Add the following to your workflow. Note that you can use the `v1` tag if you want to keep using the latest version of the action, which will automatically resolve to all `v1.minor.patch` versions as they get published.
@@ -22,22 +22,23 @@ Trigger this action on (1) pushes to your main branch and (2) pull requests open
22
22
```yaml
23
23
on:
24
24
push:
25
-
branches: [master]
25
+
branches: [main]
26
26
pull_request:
27
-
branches: [master]
27
+
branches: [main]
28
28
```
29
29
30
30
If you need to use the `pull_request_target` trigger to support repo forks, check out the HEAD of the pull request to ensure that you're running the analysis against the changed code:
By default, the action is looking for a `.maestro` folder with Maestro flows in the root directory of the project. If you would like to customize this behaviour, you can override it with a `workspace` argument:
@@ -113,7 +114,7 @@ If you don't want the action to wait until the Upload has been completed as is t
113
114
If you want to pass environment variables along with your upload, The variables must be passed as stringified JSON in the form `{"VAR_1":"VAL_1","VAR_2":"VAL_2"}`:
@@ -142,7 +143,7 @@ You can specify what Android API level to use when running in devicecloud.dev us
142
143
The default API level is 33. [Refer to docs](https://docs.devicecloud.dev/getting-started/devices-configuration) for available Android emulator API levels.
@@ -156,7 +157,7 @@ You can specify what **major** iOS Version to use when running in devicecloud.de
156
157
The default iOS version is 17. [Refer to docs](https://docs.devicecloud.dev/getting-started/devices-configuration) for available iOS simulator versions.
0 commit comments