Skip to content

Commit

Permalink
Fix conditional logic in test workflow to ensure proper execution of …
Browse files Browse the repository at this point in the history
…jobs

Signed-off-by: Nikolai Emil Damm <[email protected]>
  • Loading branch information
devantler committed Dec 22, 2024
1 parent dee8399 commit 7361909
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
env:
KSAIL_CLUSTER_NAME: homelab-local
needs: path-filter
if: ${{ github.event.pull_request.draft == false || needs.path-filter.outputs.should_skip != 'true' }}
if: ${{ github.event.pull_request.draft == false && needs.path-filter.outputs.should_skip != 'true' }}
steps:
- name: 📑 Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit 7361909

Please sign in to comment.