Skip to content

Commit

Permalink
chore: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
maxprilutskiy committed Nov 16, 2024
1 parent 83dd0c1 commit 476fe67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action/src/flows/pull-request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ export class PullRequestFlow extends InBranchFlow {

try {
// Attempt to merge base branch, preferring our changes in case of conflicts
execSync(`git merge origin/${this.config.baseBranchName} --no-edit -X ours`, { stdio: 'inherit' });
execSync(`git merge ${this.config.baseBranchName} -X ours`, { stdio: 'inherit' });

// Create a merge commit with custom message
execSync(`git commit --amend -m "chore: merge ${this.config.baseBranchName} into ${this.i18nBranchName}"`, { stdio: 'inherit' });
Expand Down

0 comments on commit 476fe67

Please sign in to comment.