Skip to content

Commit

Permalink
ci: fix token
Browse files Browse the repository at this point in the history
  • Loading branch information
cipchk committed Dec 29, 2023
1 parent 791a1df commit 855e299
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/github/comment.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
});
Expand Down

0 comments on commit 855e299

Please sign in to comment.