@@ -216,7 +216,7 @@ jobs:
216
216
test-no-token :
217
217
name : " Test: No Token"
218
218
runs-on : ubuntu-latest
219
- if : github.event.pull_request.draft == ' false'
219
+ if : github.event.pull_request.draft == false
220
220
permissions :
221
221
id-token : none
222
222
steps :
@@ -240,7 +240,7 @@ jobs:
240
240
test-action :
241
241
name : " Test: Install (${{ matrix.label }})"
242
242
runs-on : ${{ matrix.os }}
243
- if : github.event.pull_request.draft == ' false'
243
+ if : github.event.pull_request.draft == false
244
244
permissions :
245
245
id-token : write
246
246
strategy :
@@ -278,7 +278,7 @@ jobs:
278
278
test-path :
279
279
name : " Test: Path (${{ matrix.label }})"
280
280
runs-on : ${{ matrix.os }}
281
- if : github.event.pull_request.draft == ' false'
281
+ if : github.event.pull_request.draft == false
282
282
strategy :
283
283
fail-fast : false
284
284
matrix :
@@ -317,7 +317,7 @@ jobs:
317
317
test-smoketest :
318
318
name : " Test: Smoke Test (${{ matrix.label }})"
319
319
runs-on : ${{ matrix.os }}
320
- if : github.event.pull_request.draft == ' false'
320
+ if : github.event.pull_request.draft == false
321
321
strategy :
322
322
fail-fast : false
323
323
matrix :
@@ -373,7 +373,7 @@ jobs:
373
373
test-noagent :
374
374
name : " Test: No Agent (${{ matrix.label }})"
375
375
runs-on : ${{ matrix.os }}
376
- if : github.event.pull_request.draft == ' false'
376
+ if : github.event.pull_request.draft == false
377
377
strategy :
378
378
fail-fast : false
379
379
matrix :
@@ -414,7 +414,7 @@ jobs:
414
414
test-agent :
415
415
name : " Test: Agent (${{ matrix.label }})"
416
416
runs-on : ${{ matrix.os }}
417
- if : github.event.pull_request.draft == ' false'
417
+ if : github.event.pull_request.draft == false
418
418
timeout-minutes : 5
419
419
strategy :
420
420
fail-fast : false
0 commit comments