diff options
author | Érico Rolim <erico.erc@gmail.com> | 2020-11-22 21:31:03 +0000 |
---|---|---|
committer | Érico Nogueira Rolim <34201958+ericonr@users.noreply.github.com> | 2020-11-23 00:56:19 +0000 |
commit | 55f0c471762089b286638fe217eaf6b7eaf7ecb4 (patch) | |
tree | 728fdfc398e1a7eb8a248629bf1795169542d332 /.github/workflows | |
parent | 4bba972abd7882b07cf3b939198b126d2c702d42 (diff) | |
download | void-packages-55f0c471762089b286638fe217eaf6b7eaf7ecb4.tar void-packages-55f0c471762089b286638fe217eaf6b7eaf7ecb4.tar.gz void-packages-55f0c471762089b286638fe217eaf6b7eaf7ecb4.tar.bz2 void-packages-55f0c471762089b286638fe217eaf6b7eaf7ecb4.tar.lz void-packages-55f0c471762089b286638fe217eaf6b7eaf7ecb4.tar.xz void-packages-55f0c471762089b286638fe217eaf6b7eaf7ecb4.tar.zst void-packages-55f0c471762089b286638fe217eaf6b7eaf7ecb4.zip |
.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.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
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' |