File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ export default defineEventHandler(async (event) => {
2323
2424 await app . eachInstallation ( async ( { octokit, installation } ) => {
2525 if ( signal . aborted ) return ;
26-
26+
2727 if ( installation . suspended_at ) {
2828 console . warn ( `Skipping suspended installation ${ installation . id } ` ) ;
2929 return ;
@@ -60,7 +60,10 @@ export default defineEventHandler(async (event) => {
6060 } ) ;
6161 }
6262 } catch ( error ) {
63- console . warn ( `Error fetching repositories for installation ${ installation . id } :` , error ) ;
63+ console . warn (
64+ `Error fetching repositories for installation ${ installation . id } :` ,
65+ error ,
66+ ) ;
6467 }
6568 } ) ;
6669
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ const main = defineCommand({
7474 description : "use `yarn pack` instead of `npm pack --json`" ,
7575 } ,
7676 bun : {
77- " type" : "boolean" ,
77+ type : "boolean" ,
7878 description : "use `bun pm pack` instead of `npm pack --json`" ,
7979 } ,
8080 template : {
You can’t perform that action at this time.
0 commit comments