split GITHUB_REPOSITORY rather than using GITHUB_ACTOR
This commit is contained in:
parent
660f3900f8
commit
c42f0fd2e4
1 changed files with 2 additions and 1 deletions
|
@ -49,7 +49,8 @@ if [[ "${#BRANCH_ARRAY[@]}" == "1" ]]; then
|
||||||
if [[ "$GITHUB_REPOSITORY" == "$deforg"* ]]; then
|
if [[ "$GITHUB_REPOSITORY" == "$deforg"* ]]; then
|
||||||
clone $deforg $defrepo $GITHUB_HEAD_REF
|
clone $deforg $defrepo $GITHUB_HEAD_REF
|
||||||
else
|
else
|
||||||
clone $GITHUB_ACTOR $defrepo $GITHUB_HEAD_REF
|
REPO_ARRAY=(${GITHUB_REPOSITORY//\// })
|
||||||
|
clone $REPO_ARRAY[0] $defrepo $GITHUB_HEAD_REF
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
clone $deforg $defrepo $BUILDKITE_BRANCH
|
clone $deforg $defrepo $BUILDKITE_BRANCH
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue