mirror of
https://github.com/vector-im/element-web.git
synced 2025-11-28 05:51:22 +01:00
make github env variable check first as it is new home for ci
This commit is contained in:
parent
c42f0fd2e4
commit
fca2feaae8
@ -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/"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user