Skip workflow if draft

This commit is contained in:
Dániel Buga 2022-09-26 20:15:59 +02:00
parent 233a32d558
commit 3e85bccac4
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ name: CI
jobs:
build:
name: Rust (${{ matrix.toolchain }}) on ${{ matrix.os }}
if: github.event.push || github.event.pull_request.draft == false
if: github.event.pull_request.draft == false
needs: [fmt, clippy]
strategy:
fail-fast: false