Skip to content

Commit 6a78589

Browse files
authored
bpo-40548: github actions: pass the changes check on no source changes (GH-20097)
Signed-off-by: Filipe Laíns <lains@archlinux.org>
1 parent 16ab070 commit 6a78589

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
echo '::set-output name=run_tests::true'
3131
else
3232
git fetch origin $GITHUB_BASE_REF --depth=1
33-
git diff --name-only origin/$GITHUB_BASE_REF... | grep -qvE '(\.rst$|^Doc|^Misc)' && echo '::set-output name=run_tests::true'
33+
git diff --name-only origin/$GITHUB_BASE_REF... | grep -qvE '(\.rst$|^Doc|^Misc)' && echo '::set-output name=run_tests::true' || true
3434
fi
3535
build_win32:
3636
name: 'Windows (x86)'

0 commit comments

Comments
 (0)