@@ -16,12 +16,12 @@ const OctokitWithThrottling = Octokit.plugin(throttling);
1616export default async function ( ) {
1717 core . info ( "Started 'file' action" ) ;
1818 const findings : Finding [ ] = JSON . parse (
19- core . getInput ( "findings" , { required : true } )
19+ core . getInput ( "findings" , { required : true } ) ,
2020 ) ;
2121 const repoWithOwner = core . getInput ( "repository" , { required : true } ) ;
2222 const token = core . getInput ( "token" , { required : true } ) ;
2323 const cachedFilings : ( ResolvedFiling | RepeatedFiling ) [ ] = JSON . parse (
24- core . getInput ( "cached_filings" , { required : false } ) || "[]"
24+ core . getInput ( "cached_filings" , { required : false } ) || "[]" ,
2525 ) ;
2626 core . debug ( `Input: 'findings: ${ JSON . stringify ( findings ) } '` ) ;
2727 core . debug ( `Input: 'repository: ${ repoWithOwner } '` ) ;
@@ -32,7 +32,7 @@ export default async function () {
3232 throttle : {
3333 onRateLimit : ( retryAfter , options , octokit , retryCount ) => {
3434 octokit . log . warn (
35- `Request quota exhausted for request ${ options . method } ${ options . url } `
35+ `Request quota exhausted for request ${ options . method } ${ options . url } ` ,
3636 ) ;
3737 if ( retryCount < 3 ) {
3838 octokit . log . info ( `Retrying after ${ retryAfter } seconds!` ) ;
@@ -41,7 +41,7 @@ export default async function () {
4141 } ,
4242 onSecondaryRateLimit : ( retryAfter , options , octokit , retryCount ) => {
4343 octokit . log . warn (
44- `Secondary rate limit hit for request ${ options . method } ${ options . url } `
44+ `Secondary rate limit hit for request ${ options . method } ${ options . url } ` ,
4545 ) ;
4646 if ( retryCount < 3 ) {
4747 octokit . log . info ( `Retrying after ${ retryAfter } seconds!` ) ;
@@ -76,7 +76,7 @@ export default async function () {
7676 filing . issue . url = response . data . html_url ;
7777 filing . issue . title = response . data . title ;
7878 core . info (
79- `Set issue ${ response . data . title } (${ repoWithOwner } #${ response . data . number } ) state to ${ filing . issue . state } `
79+ `Set issue ${ response . data . title } (${ repoWithOwner } #${ response . data . number } ) state to ${ filing . issue . state } ` ,
8080 ) ;
8181 }
8282 } catch ( error ) {
0 commit comments