We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d990f29 commit 8a0aa99Copy full SHA for 8a0aa99
1 file changed
scripts/open-user-pr.ts
@@ -27,7 +27,7 @@ runSequence([
27
["git", ["add", "."]], // Add all changes
28
["git", ["commit", "-m", `"Update user baselines"`]], // Commit all changes
29
["git", ["remote", "add", "fork", remoteUrl]], // Add the remote fork
30
- ["git", ["push", "--set-upstream", "fork", branchName]] // push the branch
+ ["git", ["-c", `http.extraheader="AUTHORIZATION: basic ${process.argv[2]}"`, "push", "--set-upstream", "fork", branchName]] // push the branch
31
]);
32
33
const gh = new Octokit();
0 commit comments