From 88bd45728aa84bed2ca0efa18fce4d302657c5eb Mon Sep 17 00:00:00 2001 From: Ilija Tovilo Date: Wed, 18 Feb 2026 23:13:33 +0100 Subject: [PATCH 1/3] [skip ci][CI] Fix || on 0 value, being treated as falsy --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4c99f5809b45..f2803aa61c4c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -46,7 +46,7 @@ jobs: # When running nightly, set fetch-depth to 0 to clone the full # repository including all branches. This is required to find the # correct commit hashes. - fetch-depth: ${{ (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') && 0 || 1 }} + fetch-depth: ${{ (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') && "0" || "1" }} - name: Grab the commit mapping if: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }} uses: actions/cache@v5 From 3671c6dea7f36d8a8c33bc4f9c24a3c58a51bb60 Mon Sep 17 00:00:00 2001 From: Ilija Tovilo Date: Wed, 18 Feb 2026 23:19:59 +0100 Subject: [PATCH 2/3] [skip ci] Sigh, fix "" -> '' in GHA syntax --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f2803aa61c4c..5885f5231c56 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -46,7 +46,7 @@ jobs: # When running nightly, set fetch-depth to 0 to clone the full # repository including all branches. This is required to find the # correct commit hashes. - fetch-depth: ${{ (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') && "0" || "1" }} + fetch-depth: ${{ (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') && '0' || '1' }} - name: Grab the commit mapping if: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }} uses: actions/cache@v5 From 10b1da00d0085d0b5e720c318a35ea4f6c31b41c Mon Sep 17 00:00:00 2001 From: Ilija Tovilo Date: Thu, 19 Feb 2026 00:57:08 +0100 Subject: [PATCH 3/3] [skip ci] Rename PUSH job to TEST --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5885f5231c56..0b2882b6abc5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -60,7 +60,7 @@ jobs: - name: Generate Matrix id: set-matrix run: php .github/matrix.php "${{ github.event_name }}" "${{ github.run_attempt }}" "${{ github.ref }}" '${{ toJSON(github.event.pull_request.labels) }}' "${{ github.repository }}" - PUSH: + TEST: needs: GENERATE_MATRIX name: ${{ matrix.branch.name }} uses: ./.github/workflows/test-suite.yml