Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
local-github-script/src/main.ts
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
91 lines (80 sloc)
2.52 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as core from '@actions/core' | |
import * as exec from '@actions/exec' | |
import {context, getOctokit} from '@actions/github' | |
import {defaults as defaultGitHubOptions} from '@actions/github/lib/utils' | |
import * as glob from '@actions/glob' | |
import * as io from '@actions/io' | |
import {requestLog} from '@octokit/plugin-request-log' | |
import {retry} from '@octokit/plugin-retry' | |
import {RequestRequestOptions} from '@octokit/types' | |
import fetch from 'node-fetch' | |
import {callAsyncFunction} from './async-function' | |
import {RetryOptions, getRetryOptions, parseNumberArray} from './retry-options' | |
import {wrapRequire} from './wrap-require' | |
process.on('unhandledRejection', handleError) | |
main().catch(handleError) | |
type Options = { | |
log?: Console | |
userAgent?: string | |
previews?: string[] | |
retry?: RetryOptions | |
request?: RequestRequestOptions | |
} | |
async function main(): Promise<void> { | |
const token = core.getInput('github-token', {required: true}) | |
const debug = core.getBooleanInput('debug') | |
const userAgent = core.getInput('user-agent') | |
const previews = core.getInput('previews') | |
const retries = parseInt(core.getInput('retries')) | |
const exemptStatusCodes = parseNumberArray( | |
core.getInput('retry-exempt-status-codes') | |
) | |
const [retryOpts, requestOpts] = getRetryOptions( | |
retries, | |
exemptStatusCodes, | |
defaultGitHubOptions | |
) | |
const opts: Options = { | |
log: debug ? console : undefined, | |
userAgent: userAgent || undefined, | |
previews: previews ? previews.split(',') : undefined, | |
retry: retryOpts, | |
request: requestOpts | |
} | |
const github = getOctokit(token, opts, retry, requestLog) | |
const script = core.getInput('script', {required: true}) | |
// Using property/value shorthand on `require` (e.g. `{require}`) causes compilation errors. | |
const result = await callAsyncFunction( | |
{ | |
require: wrapRequire, | |
__original_require__: __non_webpack_require__, | |
github, | |
context, | |
core, | |
exec, | |
glob, | |
io, | |
fetch | |
}, | |
script | |
) | |
let encoding = core.getInput('result-encoding') | |
encoding = encoding ? encoding : 'json' | |
let output | |
switch (encoding) { | |
case 'json': | |
output = JSON.stringify(result) | |
break | |
case 'string': | |
output = String(result) | |
break | |
default: | |
throw new Error('"result-encoding" must be either "string" or "json"') | |
} | |
core.setOutput('result', output) | |
} | |
// eslint-disable-next-line @typescript-eslint/no-explicit-any | |
function handleError(err: any): void { | |
console.error(err) | |
core.setFailed(`Unhandled error: ${err}`) | |
} |