1
0
mirror of synced 2025-12-19 18:10:59 -05:00

Pretty format (#20352)

* Update prettier flow to include JS

* Run prettier

* ...run prettier
This commit is contained in:
Kevin Heis
2021-07-14 14:35:01 -07:00
committed by GitHub
parent ae3db795f4
commit 8a56437c93
333 changed files with 6904 additions and 5350 deletions

View File

@@ -14,10 +14,9 @@ if (!process.env.GITHUB_TOKEN) {
// 3. an installation token granted via GitHub Actions
const apiToken = process.env.GITHUB_TOKEN
// See https://github.com/octokit/rest.js/issues/1207
export default function github () {
export default function github() {
return new Octokit({
auth: `token ${apiToken}`
auth: `token ${apiToken}`,
})
}