From 6ade6b4ef14d0a5a1a01c8f46078451ad1e1c752 Mon Sep 17 00:00:00 2001 From: Ophelia Goldstein <159258143+opheliagoldstein@users.noreply.github.com> Date: Sun, 21 Dec 2025 14:23:28 +0200 Subject: [PATCH] ci: revert restoring e2e test workflow (#4709) Co-authored-by: Alexandr Garbuzov --- .github/workflows/e2e-test.yml | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/.github/workflows/e2e-test.yml b/.github/workflows/e2e-test.yml index 2d8dc6b6..61c257cd 100644 --- a/.github/workflows/e2e-test.yml +++ b/.github/workflows/e2e-test.yml @@ -1,15 +1,20 @@ name: Test Deployment on: - deployment_status: + # Temporarily disabled automatic triggers; manual-only for now. + workflow_dispatch: + # Original trigger (restore to re-enable): + # deployment_status: permissions: read-all jobs: e2eTests: - if: - github.repository == 'anuraghazra/github-readme-stats' && - github.event_name == 'deployment_status' && - github.event.deployment_status.state == 'success' + # Temporarily disabled; set to the original condition to re-enable. + # if: + # github.repository == 'anuraghazra/github-readme-stats' && + # github.event_name == 'deployment_status' && + # github.event.deployment_status.state == 'success' + if: false name: Perform e2e tests runs-on: ubuntu-latest strategy: @@ -32,5 +37,5 @@ jobs: - name: Run end-to-end tests. run: npm run test:e2e - env: - VERCEL_PREVIEW_URL: ${{ github.event.deployment_status.target_url }} + # env: + # VERCEL_PREVIEW_URL: ${{ github.event.deployment_status.target_url }}