diff options
author | Christian Clason <c.clason@uni-graz.at> | 2023-03-08 18:18:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-08 18:18:03 +0100 |
commit | 898f902e0051de0347394cfef0af23fe1013c84b (patch) | |
tree | bd0e11b0858cd47bb4785317bda6378f42b5805e | |
parent | ddd257f75301a50c177fc24a693d39a45b47a689 (diff) | |
download | rneovim-898f902e0051de0347394cfef0af23fe1013c84b.tar.gz rneovim-898f902e0051de0347394cfef0af23fe1013c84b.tar.bz2 rneovim-898f902e0051de0347394cfef0af23fe1013c84b.zip |
ci(news): don't run on draft (#22574)
-rw-r--r-- | .github/workflows/news.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/news.yml b/.github/workflows/news.yml index 11807e9b42..c715bf1031 100644 --- a/.github/workflows/news.yml +++ b/.github/workflows/news.yml @@ -1,11 +1,13 @@ name: "news.txt check" on: pull_request: + types: [opened, synchronize, reopened, ready_for_review] branches: - 'master' jobs: check: runs-on: ubuntu-latest + if: github.event.pull_request.draft == false steps: - uses: actions/checkout@v3 with: |