Adds Authorization header to create tree request

Signed-off-by: Shakar <5h4k4r.b4kr@gmail.com>
This commit is contained in:
Shakar 2023-09-18 15:13:24 +03:00
parent 60ade716eb
commit 46425d61c3
No known key found for this signature in database
GPG Key ID: DA55A26823AE3C28

View File

@ -121,6 +121,11 @@ async function commitChanges(filePath) {
sha: newBlobSha,
},
],
},
{
headers: {
'Authorization': `Bearer ${githubToken}`,
},
}
);