We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48f8b3b commit f22744aCopy full SHA for f22744a
packages/cli/src/cli/cmd/ci/flows/pull-request.ts
@@ -99,7 +99,7 @@ export class PullRequestFlow extends InBranchFlow {
99
100
private checkoutI18nBranch(i18nBranchName: string) {
101
execSync(`git fetch origin ${i18nBranchName}`, { stdio: "inherit" });
102
- execSync(`git checkout -b ${i18nBranchName}`, {
+ execSync(`git checkout -b ${i18nBranchName} origin/${i18nBranchName}`, {
103
stdio: "inherit",
104
});
105
}
0 commit comments