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

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 12:57:25 -07:00 committed by GitHub
parent 28babae715
commit 84687e1d56
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
27 changed files with 134 additions and 36 deletions

View file

@ -9,8 +9,9 @@ const { ELECTRON_DIR } = require('../../lib/utils');
const notesGenerator = require('./notes.js');
const { Octokit } = require('@octokit/rest');
const { createGitHubTokenStrategy } = require('../github-token');
const octokit = new Octokit({
auth: process.env.ELECTRON_GITHUB_TOKEN
authStrategy: createGitHubTokenStrategy('electron')
});
const semverify = version => version.replace(/^origin\//, '').replace(/[xy]/g, '0').replace(/-/g, '.');