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 ea1b084 commit b1cecb1
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 == 'false' }}
if: ${{ !needs.Compare-changes.outputs.backendDisable }}
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 == 'false' }}
if: ${{ !needs.Compare-changes.outputs.backendDisable }}
runs-on: ubuntu-latest
defaults:
run:
Expand Down

0 comments on commit b1cecb1

Please sign in to comment.