Skip to content

Commit 6ade6b4

Browse files
ci: revert restoring e2e test workflow (anuraghazra#4709)
Co-authored-by: Alexandr Garbuzov <qwerty541zxc@gmail.com>
1 parent 696dd6c commit 6ade6b4

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

.github/workflows/e2e-test.yml

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,20 @@
11
name: Test Deployment
22
on:
3-
deployment_status:
3+
# Temporarily disabled automatic triggers; manual-only for now.
4+
workflow_dispatch:
5+
# Original trigger (restore to re-enable):
6+
# deployment_status:
47

58
permissions: read-all
69

710
jobs:
811
e2eTests:
9-
if:
10-
github.repository == 'anuraghazra/github-readme-stats' &&
11-
github.event_name == 'deployment_status' &&
12-
github.event.deployment_status.state == 'success'
12+
# Temporarily disabled; set to the original condition to re-enable.
13+
# if:
14+
# github.repository == 'anuraghazra/github-readme-stats' &&
15+
# github.event_name == 'deployment_status' &&
16+
# github.event.deployment_status.state == 'success'
17+
if: false
1318
name: Perform e2e tests
1419
runs-on: ubuntu-latest
1520
strategy:
@@ -32,5 +37,5 @@ jobs:
3237

3338
- name: Run end-to-end tests.
3439
run: npm run test:e2e
35-
env:
36-
VERCEL_PREVIEW_URL: ${{ github.event.deployment_status.target_url }}
40+
# env:
41+
# VERCEL_PREVIEW_URL: ${{ github.event.deployment_status.target_url }}

0 commit comments

Comments
 (0)