ci: fix remote name in rebase instructions (#34432)
Previously, the rebase instructions were asking the user to rebase from `origin/master` instead of `upstream/master`. PR Close #34432
This commit is contained in:

committed by
Kara Erickson

parent
da425b7553
commit
05b4f8eb9d
@ -103,7 +103,7 @@ async function _main(repository, prNumber) {
|
|||||||
|
|
||||||
git fetch upstream ${target.baseRef};
|
git fetch upstream ${target.baseRef};
|
||||||
git checkout ${target.headRef};
|
git checkout ${target.headRef};
|
||||||
git rebase origin/${target.baseRef};
|
git rebase upstream/${target.baseRef};
|
||||||
git push --force-with-lease;
|
git push --force-with-lease;
|
||||||
`);
|
`);
|
||||||
} else {
|
} else {
|
||||||
|
Reference in New Issue
Block a user