From baeaa3a58af8c9d8c268bbac9bff3eb4a569a4f3 Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Sat, 18 Oct 2025 11:01:44 +0100 Subject: [PATCH] [Test] Run integration tests on schedule only (daily at 2 AM UTC) Integration tests are resource-intensive and take ~30 minutes to complete. Running them on every commit/PR is too slow for development workflow. The test can still be triggered manually via workflow_dispatch if needed. --- .github/workflows/integration-test.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index a57895eb8b..9c9f9ae245 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -4,10 +4,6 @@ permissions: contents: read on: - push: - branches: [master] - pull_request: - branches: [master] schedule: # Run daily at 2 AM UTC - cron: '0 2 * * *' -- 2.47.3