From a55037fad262a1d696925d7c42c68666d2e5cd7a Mon Sep 17 00:00:00 2001 From: ramvignesh-b Date: Tue, 5 May 2026 02:09:08 +0530 Subject: [PATCH] ci: restrict E2E tests to pull request events only in seft hosted git --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a300a0e..f5945bc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -114,6 +114,8 @@ jobs: name: E2E Tests runs-on: ubuntu-latest needs: setup-environment + # Skipping on Gitea pushes until I figure out caching + if: ${{ github.server_url == 'https://github.com' || github.event_name == 'pull_request' }} steps: - uses: actions/checkout@v4