Skip to content

Commit d10a820

Browse files
committed
Conflict resolved
1 parent ae860c2 commit d10a820

File tree

1 file changed

+36
-1
lines changed

1 file changed

+36
-1
lines changed

.github/workflows/build-pr.yml

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,39 @@ jobs:
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

0 commit comments

Comments
 (0)