@@ -450,7 +450,7 @@ async function run() {
450
450
451
451
case "check_run" :
452
452
if ( auto_merge ) {
453
- context . payload . check_run . pull_requests . forEach ( async function ( element ) {
453
+ for ( const element of context . payload . check_run . pull_requests ) {
454
454
const pullResponse = await client . pulls . get ( {
455
455
owner,
456
456
pull_number : element . number ,
@@ -464,7 +464,7 @@ async function run() {
464
464
else {
465
465
core . info ( `Pull request #${ element . number } does not have the label ${ label } . Skipping...` ) ;
466
466
}
467
- } ) ;
467
+ }
468
468
}
469
469
else {
470
470
core . info ( "Auto merge is disabled. You should remove the `check_run` event from the action configuration. Skipping..." ) ;
@@ -475,6 +475,7 @@ async function run() {
475
475
catch ( err ) {
476
476
//Even if it's a valid situation, we want to fail the action in order to be able to find the issue and fix it.
477
477
core . setFailed ( err . message ) ;
478
+ core . debug ( JSON . stringify ( err ) ) ;
478
479
}
479
480
}
480
481
@@ -496,7 +497,7 @@ async function push() {
496
497
repo,
497
498
state : "open" ,
498
499
} ) ;
499
- core . debug ( pulls . data ) ;
500
+ core . debug ( JSON . stringify ( pulls . data ) ) ;
500
501
let pull_number ;
501
502
if ( pulls . data . length == 1 ) {
502
503
const data = pulls . data [ 0 ] ;
@@ -524,7 +525,7 @@ async function push() {
524
525
issue_number : pull_number ,
525
526
labels : [ label ] ,
526
527
owner,
527
- repo
528
+ repo,
528
529
} ) ;
529
530
core . info ( `Label ${ label } added to #${ pull_number } .` ) ;
530
531
core . debug ( JSON . stringify ( labelsResponse . data ) ) ;
0 commit comments