From b61b6c1965cb4768b5d6da46d561c90dd02eb3f6 Mon Sep 17 00:00:00 2001 From: Furior Date: Mon, 20 Jan 2025 22:54:19 +0700 Subject: [PATCH] we need flacky rerun, but not the issue creator --- .github/workflows/rerun_flaky_tests.yml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.github/workflows/rerun_flaky_tests.yml b/.github/workflows/rerun_flaky_tests.yml index 80ece468061b4..255575582b3d9 100644 --- a/.github/workflows/rerun_flaky_tests.yml +++ b/.github/workflows/rerun_flaky_tests.yml @@ -17,15 +17,3 @@ jobs: script: | const { rerunFlakyTests } = await import('${{ github.workspace }}/tools/pull_request_hooks/rerunFlakyTests.js') await rerunFlakyTests({ github, context }) - report_flaky_tests: - runs-on: ubuntu-latest - if: ${{ github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.run_attempt == 2 }} - steps: - - name: Checkout - uses: actions/checkout@v4 - - name: Report flaky tests - uses: actions/github-script@v7 - with: - script: | - const { reportFlakyTests } = await import('${{ github.workspace }}/tools/pull_request_hooks/rerunFlakyTests.js') - await reportFlakyTests({ github, context })