Skip to content

Commit

Permalink
Fix remote clone url
Browse files Browse the repository at this point in the history
  • Loading branch information
kszucs committed Apr 10, 2021
1 parent c5bc1a2 commit 6103fe8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dev/archery/archery/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,8 @@ def submit(obj, tasks, groups, params, arrow_version):

# initialize the crossbow build's target repository
target = Target.from_repo(arrow, version=arrow_version,
remote=pull_request.base.repo.clone_url)
remote=pull_request.head.repo.clone_url,
branch=pull_request.head.ref)

# parse additional job parameters
params = dict([p.split("=") for p in params])
Expand Down

0 comments on commit 6103fe8

Please sign in to comment.