Skip to content

Commit

Permalink
Correct condition
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilyBourne committed Feb 7, 2025
1 parent 85c8b79 commit 5ea707d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
toolchain: ${{ matrix.toolchain }}
merge_target: ${{ github.event.pull_request.base.sha || github.event.merge_group.base_sha }}
pr_number: ${{ github.event.pull_request.number }}
is_duplicate: ${{ needs.pre_job.outputs.should_skip != 'true' && github.event.pull_request.draft == false }}
is_duplicate: ${{ needs.pre_job.outputs.should_skip == 'true' && github.event.pull_request.draft == false }}

gpu_tests:
name: GPU Test
Expand All @@ -55,7 +55,7 @@ jobs:
merge_target: ${{ github.event.pull_request.base.sha || github.event.merge_group.base_sha }}
SHA: ${{ github.event.pull_request.head.sha }}
pr_number: ${{ github.event.pull_request.number }}
is_duplicate: ${{ needs.pre_job.outputs.should_skip != 'true' && github.event.pull_request.draft == false }}
is_duplicate: ${{ needs.pre_job.outputs.should_skip == 'true' && github.event.pull_request.draft == false }}
secrets: inherit

set_draft_failing:
Expand Down

0 comments on commit 5ea707d

Please sign in to comment.