From 654a2d53e5ca982bef56b950055a6cb51b3936c6 Mon Sep 17 00:00:00 2001 From: maxprilutskiy Date: Sun, 6 Oct 2024 18:10:08 -0700 Subject: [PATCH] fix --- action/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action/src/index.ts b/action/src/index.ts index f06b40c..b5572d3 100644 --- a/action/src/index.ts +++ b/action/src/index.ts @@ -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({