File tree Expand file tree Collapse file tree 1 file changed +36
-1
lines changed
Expand file tree Collapse file tree 1 file changed +36
-1
lines changed Original file line number Diff line number Diff line change 5757 secrets : inherit
5858 with :
5959 type : official
60- trigger : " pr"
60+ trigger : " pr"
61+
62+ e2e-hold :
63+ name : E2E Hold
64+ if : ${{ github.repository == 'RocketChat/Rocket.Chat.ReactNative' }}
65+ runs-on : ubuntu-latest
66+ steps :
67+ - run : echo "Waiting for manual approval..."
68+
69+ e2e-build-android :
70+ name : E2E Build Android
71+ if : ${{ github.repository == 'RocketChat/Rocket.Chat.ReactNative' }}
72+ uses : ./.github/workflows/e2e_build_android.yml
73+ needs : [e2e-hold]
74+ secrets : inherit
75+
76+ e2e-run-android :
77+ name : E2E Run Android
78+ if : ${{ github.repository == 'RocketChat/Rocket.Chat.ReactNative' }}
79+ uses : ./.github/workflows/maestro_android.yml
80+ needs : [e2e-build-android]
81+ secrets : inherit
82+
83+ e2e-build-ios :
84+ name : E2E Build iOS
85+ if : ${{ github.repository == 'RocketChat/Rocket.Chat.ReactNative' }}
86+ uses : ./.github/workflows/e2e_build_ios.yml
87+ needs : [e2e-hold]
88+ secrets : inherit
89+
90+ e2e-run-ios :
91+ name : E2E Run iOS
92+ if : ${{ github.repository == 'RocketChat/Rocket.Chat.ReactNative' }}
93+ uses : ./.github/workflows/maestro_ios.yml
94+ needs : [e2e-build-ios]
95+ secrets : inherit
You can’t perform that action at this time.
0 commit comments