From a02c44b08080db482ee2b7c83f953aadebf48644 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89rico=20Rolim?= Date: Sun, 22 Nov 2020 18:31:03 -0300 Subject: [PATCH] .github/workflows/build: don't skip CI when PR is a draft. When a PR is marked as ready for review (no longer a draft), CI isn't re-run automatically, so no tests are run until the PR is updated. Even trying to manually re-run the jobs doesn't fix this, since GH appears to remember the PR state instead of using the current one. --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 8c0cdccf5d4..33186037f8d 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -26,7 +26,7 @@ jobs: build: name: Build packages runs-on: ubuntu-18.04 - if: "!github.event.pull_request.draft && !contains(github.event.pull_request.title, '[ci skip]') && !contains(github.event.pull_request.body, '[ci skip]')" + if: "!contains(github.event.pull_request.title, '[ci skip]') && !contains(github.event.pull_request.body, '[ci skip]')" container: image: 'voidlinux/masterdir-${{ matrix.config.bootstrap }}:20200607RC01'