Skip to content

Commit

Permalink
πŸ’š fix condition
Browse files Browse the repository at this point in the history
  • Loading branch information
Dlutermade committed Sep 17, 2023
1 parent 827bd04 commit 4260fdd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 4260fdd

Please sign in to comment.