[Python-checkins] (no subject)

Filipe Laíns webhook-mailer at python.org
Thu May 14 22:08:30 EDT 2020




To: python-checkins at python.org
Subject: bpo-40548: github actions: pass the changes check on no source
 changes (GH-20097)
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0

https://github.com/python/cpython/commit/6a78589b6b22878491a4b042bb8b3161e1d1=
20f6
commit: 6a78589b6b22878491a4b042bb8b3161e1d120f6
branch: master
author: Filipe La=C3=ADns <lains at archlinux.org>
committer: GitHub <noreply at github.com>
date: 2020-05-15T04:08:21+02:00
summary:

bpo-40548: github actions: pass the changes check on no source changes (GH-20=
097)

Signed-off-by: Filipe La=C3=ADns <lains at archlinux.org>

files:
M .github/workflows/build.yml

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index dabfb79e9dcea..dbef550643e81 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -30,7 +30,7 @@ jobs:
             echo '::set-output name=3Drun_tests::true'
           else
             git fetch origin $GITHUB_BASE_REF --depth=3D1
-            git diff --name-only origin/$GITHUB_BASE_REF... | grep -qvE '(\.=
rst$|^Doc|^Misc)' && echo '::set-output name=3Drun_tests::true'
+            git diff --name-only origin/$GITHUB_BASE_REF... | grep -qvE '(\.=
rst$|^Doc|^Misc)' && echo '::set-output name=3Drun_tests::true' || true
           fi
   build_win32:
     name: 'Windows (x86)'



More information about the Python-checkins mailing list