From c1734325c32ed3893693b02a2abb31ef600f8f0d Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Tue, 21 Jan 2025 18:24:11 +0000 Subject: [PATCH] Use fewer Playwright runners --- .github/workflows/end-to-end-tests.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/end-to-end-tests.yaml b/.github/workflows/end-to-end-tests.yaml index bd7872ee12..7c4510e5c6 100644 --- a/.github/workflows/end-to-end-tests.yaml +++ b/.github/workflows/end-to-end-tests.yaml @@ -35,8 +35,8 @@ concurrency: env: # fetchdep.sh needs to know our PR number PR_NUMBER: ${{ github.event.pull_request.number }} - # Use 6 runners in the default case, but 4 when running on a schedule where we run all 5 projects (20 runners total) - NUM_RUNNERS: ${{ github.event_name == 'schedule' && 4 || 6 }} + # Use 5 runners in the default case, but 3 when running on a schedule where we run all 5 projects (15 runners total) + NUM_RUNNERS: ${{ github.event_name == 'schedule' && 3 || 5 }} permissions: {} # No permissions required