diff options
Diffstat (limited to '.github/workflows/windows_build.yml')
-rw-r--r-- | .github/workflows/windows_build.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/windows_build.yml b/.github/workflows/windows_build.yml index 527abc33ea..04f42a702f 100644 --- a/.github/workflows/windows_build.yml +++ b/.github/workflows/windows_build.yml @@ -20,7 +20,10 @@ jobs: name: ${{ matrix.os }} env: BOOST_ROOT: C:\local\boost_1_79_0 - if: github.repository == 'azerothcore/azerothcore-wotlk' && (github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'run-build') || github.event.label.name == 'run-build') + if: | + github.repository == 'azerothcore/azerothcore-wotlk' + && !github.event.pull_request.draft + && (github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'run-build') || github.event.label.name == 'run-build') steps: - uses: actions/checkout@v2 - name: Configure OS |