From 8d449df39bd6fde3a70bcc43d2be70774dfe9ae9 Mon Sep 17 00:00:00 2001 From: markijbema <624143+markijbema@users.noreply.github.com> Date: Thu, 25 Jun 2026 12:59:26 +0000 Subject: [PATCH] fix(ci): retain full tests outside pull requests Co-authored-by: kiloconnect[bot] <240665456+kiloconnect[bot]@users.noreply.github.com> --- .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 9577cf204d..7d467cadb9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -49,7 +49,7 @@ jobs: - name: Configure unit matrix id: matrix env: - GENERAL: ${{ github.event_name == 'workflow_dispatch' || steps.filter.outputs.general == 'true' }} + GENERAL: ${{ github.event_name != 'pull_request' || steps.filter.outputs.general == 'true' }} run: | if [ "$GENERAL" = "true" ]; then echo 'settings=[{"name":"linux","host":"blacksmith-4vcpu-ubuntu-2404","run":true},{"name":"macos","host":"macos-15","run":true},{"name":"windows","host":"blacksmith-4vcpu-windows-2025","run":true}]' >> "$GITHUB_OUTPUT"