Skip to content

Commit e2472f1

Browse files
fix: Fix error in open-v3-pr script (#8495)
1 parent 9eefc10 commit e2472f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/deployments/open-v3-pr.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ if (require.main === module) {
1313
execSync(`git checkout -b v3-maintenance-${process.env.PR_NUMBER} -f`);
1414

1515
execSync(
16-
`git rebase --onto v3-maintenance origin/main v3-maintenance-${process.env.PR_NUMBER}`
16+
`git rebase --onto origin/v3-maintenance origin/main v3-maintenance-${process.env.PR_NUMBER}`
1717
);
1818

1919
execSync(`git push origin HEAD --force`);

0 commit comments

Comments
 (0)