build: add support for fetching github token from sudowoodo (#43888)

build: add support for fetching github token from sudowoodo (#43808)

* build: add support for fetching github token from sudowoodo

* chore: update release notes cache for tests

* build: support nightlies repo correctly

* build: post token
This commit is contained in:
Samuel Attard 2024-09-23 13:56:29 -07:00 committed by GitHub
parent 2cc8a33f11
commit 4e5de0ca44
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
27 changed files with 134 additions and 36 deletions

View file

@ -1,12 +1,13 @@
const { Octokit } = require('@octokit/rest');
const got = require('got');
const octokit = new Octokit({
userAgent: 'electron-asset-fetcher',
auth: process.env.ELECTRON_GITHUB_TOKEN
});
const { createGitHubTokenStrategy } = require('./github-token');
async function getAssetContents (repo, assetId) {
const octokit = new Octokit({
userAgent: 'electron-asset-fetcher',
authStrategy: createGitHubTokenStrategy(repo)
});
const requestOptions = octokit.repos.getReleaseAsset.endpoint({
owner: 'electron',
repo,
@ -17,7 +18,7 @@ async function getAssetContents (repo, assetId) {
});
const { url, headers } = requestOptions;
headers.authorization = `token ${process.env.ELECTRON_GITHUB_TOKEN}`;
headers.authorization = `token ${(await octokit.auth()).token}`;
const response = await got(url, {
followRedirect: false,