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:
parent
f0afcaa777
commit
517d04de16
27 changed files with 123 additions and 35 deletions
|
@ -13,6 +13,7 @@ const path = require('node:path');
|
|||
const readline = require('node:readline');
|
||||
const releaseNotesGenerator = require('./notes/index.js');
|
||||
const { getCurrentBranch, ELECTRON_DIR } = require('../lib/utils.js');
|
||||
const { createGitHubTokenStrategy } = require('./github-token');
|
||||
const bumpType = args._[0];
|
||||
const targetRepo = getRepo();
|
||||
|
||||
|
@ -21,7 +22,7 @@ function getRepo () {
|
|||
}
|
||||
|
||||
const octokit = new Octokit({
|
||||
auth: process.env.ELECTRON_GITHUB_TOKEN
|
||||
authStrategy: createGitHubTokenStrategy(getRepo())
|
||||
});
|
||||
|
||||
require('colors');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue