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 91738d1 commit f285fd0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/frontend-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
skip-frontend-test:
needs:
- compare-changes
if: ${{ needs.compare-changes.outputs.frontendDisable == true }}
runs-on: ubuntu-latest
steps:
- run: echo "Skipping frontend tests"
- run: echo "Skipping frontend tests ${{ needs.compare-changes.outputs.frontendDisable }}"
echo "Skipping backend tests ${{ needs.compare-changes.outputs.backendDisable }}"
frontend-test:
needs:
- compare-changes
Expand Down

0 comments on commit f285fd0

Please sign in to comment.