11import * as core from '@actions/core'
22import * as exec from '@actions/exec'
3- import { context , getOctokit } from '@actions/github'
3+ import { context , getOctokit } from '@actions/github'
44import * as glob from '@actions/glob'
55import * as io from '@actions/io'
6- import { callAsyncFunction } from './async-function'
7- import { wrapRequire } from './wrap-require'
6+ import { callAsyncFunction } from './async-function'
7+ import { wrapRequire } from './wrap-require'
88
99process . on ( 'unhandledRejection' , handleError )
1010main ( ) . catch ( handleError )
@@ -16,7 +16,7 @@ type Options = {
1616}
1717
1818async function main ( ) : Promise < void > {
19- const token = core . getInput ( 'github-token' , { required : true } )
19+ const token = core . getInput ( 'github-token' , { required : true } )
2020 const debug = core . getInput ( 'debug' )
2121 const userAgent = core . getInput ( 'user-agent' )
2222 const previews = core . getInput ( 'previews' )
@@ -27,7 +27,7 @@ async function main(): Promise<void> {
2727 if ( previews != null ) opts . previews = previews . split ( ',' )
2828
2929 const github = getOctokit ( token , opts )
30- const script = core . getInput ( 'script' , { required : true } )
30+ const script = core . getInput ( 'script' , { required : true } )
3131
3232 // Using property/value shorthand on `require` (e.g. `{require}`) causes compilation errors.
3333 const result = await callAsyncFunction (
0 commit comments