Skip to content

Commit

Permalink
fix: pr draft condition for ci
Browse files Browse the repository at this point in the history
Signed-off-by: Sam Gammon <[email protected]>
  • Loading branch information
sgammon committed Dec 5, 2023
1 parent 613e6f2 commit 996eacd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ jobs:
test-no-token:
name: "Test: No Token"
runs-on: ubuntu-latest
if: github.event.pull_request.draft == 'false'
if: github.event.pull_request.draft == false
permissions:
id-token: none
steps:
Expand All @@ -240,7 +240,7 @@ jobs:
test-action:
name: "Test: Install (${{ matrix.label }})"
runs-on: ${{ matrix.os }}
if: github.event.pull_request.draft == 'false'
if: github.event.pull_request.draft == false
permissions:
id-token: write
strategy:
Expand Down Expand Up @@ -278,7 +278,7 @@ jobs:
test-path:
name: "Test: Path (${{ matrix.label }})"
runs-on: ${{ matrix.os }}
if: github.event.pull_request.draft == 'false'
if: github.event.pull_request.draft == false
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -317,7 +317,7 @@ jobs:
test-smoketest:
name: "Test: Smoke Test (${{ matrix.label }})"
runs-on: ${{ matrix.os }}
if: github.event.pull_request.draft == 'false'
if: github.event.pull_request.draft == false
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -373,7 +373,7 @@ jobs:
test-noagent:
name: "Test: No Agent (${{ matrix.label }})"
runs-on: ${{ matrix.os }}
if: github.event.pull_request.draft == 'false'
if: github.event.pull_request.draft == false
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -414,7 +414,7 @@ jobs:
test-agent:
name: "Test: Agent (${{ matrix.label }})"
runs-on: ${{ matrix.os }}
if: github.event.pull_request.draft == 'false'
if: github.event.pull_request.draft == false
timeout-minutes: 5
strategy:
fail-fast: false
Expand Down

0 comments on commit 996eacd

Please sign in to comment.