Skip to content

Commit

Permalink
Changed logic that triggers workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
kiwiswift committed Nov 12, 2024
1 parent b1cecb1 commit fc5e1ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/backend-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
backend-tests:
needs:
- Compare-changes
if: ${{ !needs.Compare-changes.outputs.backendDisable }}
if: ${{ needs.Compare-changes.outputs.backendDisable == false }}
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/frontend-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
frontend-test:
needs:
- Compare-changes
if: ${{ !needs.Compare-changes.outputs.backendDisable }}
if: ${{ needs.Compare-changes.outputs.backendDisable == false }}
runs-on: ubuntu-latest
defaults:
run:
Expand Down

0 comments on commit fc5e1ce

Please sign in to comment.