Last updated
Was this helpful?
Was this helpful?
//retrieve the PR source code from the Git based SCM
git clone git@github.repo/repo.git
//create a local integration branch starting from the target branch - do not push it to the remote
git checkout -b <local-integration-branch-name> <target-branch>
//Merge pull request into local integration branch
git pull --ff git@github.repo/repo.git <pull-request-branch>
...
//run sealights build