From 2ba64f018daf8da2a448e84bcfdb9469bbce2803 Mon Sep 17 00:00:00 2001 From: Adam <62897873+YeIIcw@users.noreply.github.com> Date: Wed, 29 Oct 2025 13:07:16 -0700 Subject: [PATCH] Fix/agent loop test (#532) * Fix agent test condition trigger --- .github/workflows/test-cua-models.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-cua-models.yml b/.github/workflows/test-cua-models.yml index 63f94faa..d5681983 100644 --- a/.github/workflows/test-cua-models.yml +++ b/.github/workflows/test-cua-models.yml @@ -17,7 +17,7 @@ on: jobs: # Test all CUA models - runs on PRs or when manually triggered test-all-models: - if: ${{ github.event_name == 'pull_request' || fromJSON(inputs.test_models) }} + if: ${{ github.event_name == 'pull_request_target' || fromJSON(inputs.test_models || 'false') }} runs-on: ubuntu-latest strategy: fail-fast: false