From b94ddebfbd946ae09ecd80c7e810bd97973bc877 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Wed, 21 Aug 2024 18:17:41 -0400 Subject: [PATCH] Increase flaky test attempts to 5 --- .github/workflows/rerun-flaky-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rerun-flaky-tests.yml b/.github/workflows/rerun-flaky-tests.yml index a5d11b3404..946e7dbb22 100644 --- a/.github/workflows/rerun-flaky-tests.yml +++ b/.github/workflows/rerun-flaky-tests.yml @@ -8,7 +8,7 @@ jobs: rerun_flaky_tests: name: Rerun Flaky Tests runs-on: ubuntu-latest - if: ${{ github.event.workflow_run.conclusion == 'failure' && github.event.workflow_run.run_attempt < 3 }} + if: ${{ github.event.workflow_run.conclusion == 'failure' && github.event.workflow_run.run_attempt < 5 }} steps: - name: Checkout uses: actions/checkout@v4