From d1a88db5a97a920fc18c5d102b162f842d3714f1 Mon Sep 17 00:00:00 2001 From: Ophelia Goldstein <159258143+opheliagoldstein@users.noreply.github.com> Date: Sat, 6 Dec 2025 18:49:24 +0200 Subject: [PATCH] ci: temporary disable e2e tests workflow (#4684) 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 022713fd..e2026109 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 2e2 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 }}