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:
parent
d0a04bf309
commit
23cf11a788
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue