diff --git a/.github/workflows/run-nightly-flaky-test-detector.yml b/.github/workflows/run-nightly-flaky-test-detector.yml index 615233a6106..1c5dc72d4a3 100644 --- a/.github/workflows/run-nightly-flaky-test-detector.yml +++ b/.github/workflows/run-nightly-flaky-test-detector.yml @@ -4,6 +4,7 @@ on: schedule: # Run every night at 3:00 AM UTC - cron: '0 3 * * *' + workflow_dispatch: # Allows manual trigger for debugging jobs: trigger-flaky-test-detection: @@ -14,8 +15,8 @@ jobs: baseRef: 'origin/develop' projectPath: '.' runThreshold: '1' - runAllTests: 'true' - extraArgs: '{ "skipped_tests": "TestChainComponents", "test_repeat_count": "5", "all_tests_runner": "ubuntu22.04-32cores-128GB", "all_tests_runner_count": "3", "min_pass_ratio": "0" }' + runAllTests: true + extraArgs: '{ "skipped_tests": "TestChainComponents", "test_repeat_count": "5", "all_tests_runner": "ubuntu22.04-32cores-128GB", "all_tests_runner_count": "3", "min_pass_ratio": "0", "run_with_race": "false" }' secrets: SLACK_BOT_TOKEN: ${{ secrets.QA_SLACK_API_KEY }} \ No newline at end of file