From 75476c6ef29b1ce0b91ae3568c763b5e973a76e6 Mon Sep 17 00:00:00 2001 From: Feng Chao Date: Sat, 8 Mar 2025 19:29:19 +0800 Subject: [PATCH] udpate workflow to fix param bool type issue --- .github/workflows/taosd-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/taosd-ci.yml b/.github/workflows/taosd-ci.yml index 42a5d9db32..ae72f85afa 100644 --- a/.github/workflows/taosd-ci.yml +++ b/.github/workflows/taosd-ci.yml @@ -74,8 +74,8 @@ jobs: if: ${{ needs.fetch-parameters.outputs.run_tdgpt_test == 'true' || needs.fetch-parameters.outputs.run_function_test == 'true' }} with: tdinternal: false - run_function_test: ${{ needs.fetch-parameters.outputs.run_function_test }} == 'true' - run_tdgpt_test: ${{ needs.fetch-parameters.outputs.run_tdgpt_test }} == 'true' + run_function_test: ${{ needs.fetch-parameters.outputs.run_function_test == 'true' || false }} + run_tdgpt_test: ${{ needs.fetch-parameters.outputs.run_tdgpt_test == 'true' || false }} source_branch: ${{ github.event.pull_request.head.ref }} target_branch: ${{ github.event.pull_request.base.ref }} pr_number: ${{ github.event.pull_request.number }}