Skip to content

Commit 23cf11a

Browse files
sonukapoorkara
authored andcommitted
ci: fix remote name in rebase instructions (angular#34432)
Previously, the rebase instructions were asking the user to rebase from `origin/master` instead of `upstream/master`. PR Close angular#34432
1 parent d0a04bf commit 23cf11a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/rebase-pr.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ async function _main(repository, prNumber) {
103103
104104
git fetch upstream ${target.baseRef};
105105
git checkout ${target.headRef};
106-
git rebase origin/${target.baseRef};
106+
git rebase upstream/${target.baseRef};
107107
git push --force-with-lease;
108108
`);
109109
} else {

0 commit comments

Comments
 (0)