diff options
author | Filipe Laíns <lains@archlinux.org> | 2020-05-15 02:08:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-15 02:08:21 (GMT) |
commit | 6a78589b6b22878491a4b042bb8b3161e1d120f6 (patch) | |
tree | c33e93c0d61cf50cac3330738f075d78d3a86f33 | |
parent | 16ab07063cb564c1937714bd39d6915172f005b5 (diff) | |
download | cpython-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>
-rw-r--r-- | .github/workflows/build.yml | 2 |
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)' |