From 4260fdd63e02ec59d70d800be790f647c81288d8 Mon Sep 17 00:00:00 2001 From: Dluter Date: Mon, 18 Sep 2023 05:13:00 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20fix=20condition?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 28d5861..1b426a2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,18 +14,18 @@ jobs: check_lint: needs: check_main_branch - if: needs.check_main_branch.outputs.is_main == true + if: needs.check_main_branch.outputs.is_main == 'true' uses: ./.github/workflows/checkLint.yml secrets: inherit check_type: needs: check_main_branch - if: needs.check_main_branch.outputs.is_main == true + if: needs.check_main_branch.outputs.is_main == 'true' uses: ./.github/workflows/checkType.yml secrets: inherit unit_test: needs: check_main_branch - if: needs.check_main_branch.outputs.is_main == true + if: needs.check_main_branch.outputs.is_main == 'true' uses: ./.github/workflows/unitTest.yml secrets: inherit