diff options
author | James McCoy <jamessan@jamessan.com> | 2021-03-14 18:30:27 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-14 18:30:27 -0400 |
commit | bdf3aeeeded962620f4a71cda8047e0844cfb666 (patch) | |
tree | 00d59020d78aa77ec6ad64a18dd1007b02e97e73 | |
parent | b1f7c4e7d624f865a53cb26416a21204ee8c020f (diff) | |
parent | f2847e7ea12755793ca6d524c98542d6362e65fc (diff) | |
download | rneovim-bdf3aeeeded962620f4a71cda8047e0844cfb666.tar.gz rneovim-bdf3aeeeded962620f4a71cda8047e0844cfb666.tar.bz2 rneovim-bdf3aeeeded962620f4a71cda8047e0844cfb666.zip |
Merge pull request #14123 from smolck/skip_ci
Don't run CI on draft PRs
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 44a911b21b..bd90aeb932 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,6 +28,7 @@ jobs: runner: macos-10.15 os: osx runs-on: ${{ matrix.runner }} + if: github.event.pull_request.draft == false env: CC: ${{ matrix.cc }} CI_OS_NAME: ${{ matrix.os }} @@ -88,6 +89,7 @@ jobs: windows: runs-on: windows-2016 + if: github.event.pull_request.draft == false env: DEPS_BUILD_DIR: "C:/projects/nvim-deps" DEPS_PREFIX: "C:/projects/nvim-deps/usr" |