make github env variable check first as it is new home for ci

pull/21833/head
Germain Souquet 2021-06-22 16:09:33 +01:00
parent c42f0fd2e4
commit fca2feaae8
1 changed files with 3 additions and 3 deletions

View File

@ -25,10 +25,10 @@ clone() {
# First we check if GITHUB_HEAD_REF is defined,
# Then we check if BUILDKITE_BRANCH is defined,
# if it isn't we can assume this is a Netlify build
if [ -n "$BUILDKITE_BRANCH" ]; then
head=$BUILDKITE_BRANCH
elif [ -n "$GITHUB_HEAD_REF" ]; then
if [ -n "$GITHUB_HEAD_REF" ]; then
head=$GITHUB_HEAD_REF
elif [ -n "$BUILDKITE_BRANCH" ]; then
head=$BUILDKITE_BRANCH
else
# Netlify doesn't give us info about the fork so we have to get it from GitHub API
apiEndpoint="https://api.github.com/repos/matrix-org/matrix-react-sdk/pulls/"