summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorFilipe Laíns <lains@archlinux.org>2020-05-15 02:08:21 (GMT)
committerGitHub <noreply@github.com>2020-05-15 02:08:21 (GMT)
commit6a78589b6b22878491a4b042bb8b3161e1d120f6 (patch)
treec33e93c0d61cf50cac3330738f075d78d3a86f33 /.github/workflows
parent16ab07063cb564c1937714bd39d6915172f005b5 (diff)
downloadcpython-6a78589b6b22878491a4b042bb8b3161e1d120f6.zip
cpython-6a78589b6b22878491a4b042bb8b3161e1d120f6.tar.gz
cpython-6a78589b6b22878491a4b042bb8b3161e1d120f6.tar.bz2
bpo-40548: github actions: pass the changes check on no source changes (GH-20097)
Signed-off-by: Filipe Laíns <lains@archlinux.org>
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index dabfb79..dbef550 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -30,7 +30,7 @@ jobs:
echo '::set-output name=run_tests::true'
else
git fetch origin $GITHUB_BASE_REF --depth=1
- git diff --name-only origin/$GITHUB_BASE_REF... | grep -qvE '(\.rst$|^Doc|^Misc)' && echo '::set-output name=run_tests::true'
+ git diff --name-only origin/$GITHUB_BASE_REF... | grep -qvE '(\.rst$|^Doc|^Misc)' && echo '::set-output name=run_tests::true' || true
fi
build_win32:
name: 'Windows (x86)'