Skip to content

Commit 01574f9

Browse files
committed
e2e-status for branch protection
1 parent 21e38c2 commit 01574f9

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/e2e.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,3 +205,17 @@ jobs:
205205
- name: Dump docker logs on failure (${{ matrix.shard.name }})
206206
if: failure()
207207
uses: jwalton/gh-docker-logs@v2
208+
209+
e2e-status:
210+
name: e2e-status
211+
runs-on: ubuntu-latest
212+
needs: [e2e-tests]
213+
if: always()
214+
steps:
215+
- name: Verify all E2E shards succeeded
216+
run: |
217+
if [ "${{ needs.e2e-tests.result }}" != "success" ]; then
218+
echo "❌ Some E2E shards failed."
219+
exit 1
220+
fi
221+
echo "✅ All E2E shards passed!"

0 commit comments

Comments
 (0)