diff options
Diffstat (limited to '.github/workflows/news.yml')
-rw-r--r-- | .github/workflows/news.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/news.yml b/.github/workflows/news.yml index 11807e9b42..d4f8e5ad65 100644 --- a/.github/workflows/news.yml +++ b/.github/workflows/news.yml @@ -1,13 +1,15 @@ 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 + - uses: actions/checkout@v4 with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }} |