diff --git a/scripts/github/comment.js b/scripts/github/comment.js index 3b9c78502d..57b0cb57c9 100644 --- a/scripts/github/comment.js +++ b/scripts/github/comment.js @@ -18,7 +18,7 @@ async function withGithub(url, json, method) { headers: { Accept: 'application/json', 'Content-Type': 'application/json', - Authorization: `Basic ${Buffer.from(TOKEN).toString('base64')}`, + Authorization: `Basic ${TOKEN}`, }, body: json ? JSON.stringify(json) : undefined, });