From b3edc99cb02f59721a404a104852fa2c8eccedf9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josef=20Proch=C3=A1zka?= Date: Tue, 6 Jan 2026 15:31:21 +0100 Subject: [PATCH] Revert "chore(ci): Add e2e test trigger for fork PRs (#1657)" This reverts commit 1a22548d0f9178dcce86af9f9469b620b7c96c9c. --- .github/workflows/on_pull_request_fork.yaml.yml | 17 ----------------- .github/workflows/on_schedule_tests.yaml | 6 ------ 2 files changed, 23 deletions(-) delete mode 100644 .github/workflows/on_pull_request_fork.yaml.yml diff --git a/.github/workflows/on_pull_request_fork.yaml.yml b/.github/workflows/on_pull_request_fork.yaml.yml deleted file mode 100644 index 57e541ab9e..0000000000 --- a/.github/workflows/on_pull_request_fork.yaml.yml +++ /dev/null @@ -1,17 +0,0 @@ -on: - pull_request_target: - -jobs: - approve_e2e_tests_on_fork: - if: github.event.pull_request.head.repo.full_name != github.repository - environment: forks-PR - runs-on: ubuntu-latest - steps: - - name: Approve E2E tests - run: echo "Approved" - - run_e2e_tests: - needs: approve_e2e_tests_on_fork - uses: ./.github/workflows/on_schedule_tests.yaml - secrets: - APIFY_TEST_USER_API_TOKEN: ${{ secrets.APIFY_TEST_USER_API_TOKEN }} diff --git a/.github/workflows/on_schedule_tests.yaml b/.github/workflows/on_schedule_tests.yaml index 0237c2e852..85bd076ab2 100644 --- a/.github/workflows/on_schedule_tests.yaml +++ b/.github/workflows/on_schedule_tests.yaml @@ -8,12 +8,6 @@ on: schedule: - cron: '0 6 * * *' - # Runs when invoked by another workflow. - workflow_call: - secrets: - APIFY_TEST_USER_API_TOKEN: - required: true - concurrency: group: scheduled-tests cancel-in-progress: false