From 40dc913367053deffcbb453a4650ac4f05bc3ed2 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Tue, 28 Jul 2020 16:32:06 +0100 Subject: [PATCH] *.py check should always exit 0 --- .github/workflows/pr-annotate-with-flake8.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pr-annotate-with-flake8.yml b/.github/workflows/pr-annotate-with-flake8.yml index f65d7452..41728432 100644 --- a/.github/workflows/pr-annotate-with-flake8.yml +++ b/.github/workflows/pr-annotate-with-flake8.yml @@ -28,6 +28,7 @@ jobs: # the diff. PYFILES=$(git diff --name-only "refs/remotes/origin/${BASE_REF}" -- | egrep '.py$') echo '::set-env name=PYFILES::${PYFILES}' + exit 0 - name: Set up Python 3.7 if: ${{ env.PYFILES != '' }}