Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
maxprilutskiy committed Oct 7, 2024
1 parent 606fa19 commit 654a2d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import doStuff from './do-stuff.js';
execSync(`git checkout -b ${prBranchName}`);
execSync('git add .');
execSync(`git commit -m "${config.commitMessage}"`);
execSync('git push --set-upstream origin ${prBranchName}');
execSync(`git push --set-upstream origin "${prBranchName}"`);

// Create PR
await octokit.rest.pulls.create({
Expand Down

0 comments on commit 654a2d5

Please sign in to comment.