From: Filipe Laíns Date: Fri, 15 May 2020 02:08:21 +0000 (+0100) Subject: bpo-40548: github actions: pass the changes check on no source changes (GH-20097) X-Git-Tag: v3.9.0b1~72 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6a78589b6b22878491a4b042bb8b3161e1d120f6;p=thirdparty%2FPython%2Fcpython.git bpo-40548: github actions: pass the changes check on no source changes (GH-20097) Signed-off-by: Filipe Laíns --- diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dabfb79e9dce..dbef550643e8 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)'