Something has happened to the source checker task, e.g. python/cpython#21748
Run if [ -z "GITHUB_BASE_REF" ]; then
if [ -z "GITHUB_BASE_REF" ]; then
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' || true
fi
shell: /bin/bash -e {0}
From https://github.com/python/cpython
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
fatal: origin/master...HEAD: no merge base
I'm not sure what this error means, but because the failure is treated as a success, the checks decide they don't need to run and so we get all green with no CI!
Reactions are currently unavailable
Something has happened to the source checker task, e.g. python/cpython#21748
Run if [ -z "GITHUB_BASE_REF" ]; then if [ -z "GITHUB_BASE_REF" ]; then 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' || true fi shell: /bin/bash -e {0} From https://github.com/python/cpython * branch master -> FETCH_HEAD * [new branch] master -> origin/master fatal: origin/master...HEAD: no merge baseI'm not sure what this error means, but because the failure is treated as a success, the checks decide they don't need to run and so we get all green with no CI!