File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -142,12 +142,12 @@ module.exports.process = (robot) => async ({
142
142
( s ) =>
143
143
s . conclusion !== CONCLUSION . SUCCESS &&
144
144
s . conclusion !== CONCLUSION . NEUTRAL &&
145
- s . conclusion !== CONCLUSION . SKIPPED
146
- // Currently check suites like https://github.com/NLog/NLog/pull/3296/checks were being
147
- // queued and never concluding. You can see that in this API response:
148
- // https://api.github.com/repos/NLog/Nlog/commits/2c8f7471648f22fa5dc9bf6db53e96fae061fc0a/check-suites
149
- // Corresponding issue: https://github.com/mfix22/ranger/issues/60
150
- // s.conclusion !== null
145
+ s . conclusion !== CONCLUSION . SKIPPED &&
146
+ // TODO remove this. Currently check suites like https://github.com/NLog/NLog/pull/3296/checks are being
147
+ // queued and never concluding. You can see that in this API response:
148
+ // https://api.github.com/repos/NLog/Nlog/commits/2c8f7471648f22fa5dc9bf6db53e96fae061fc0a/check-suites
149
+ // Corresponding issue: https://github.com/mfix22/ranger/issues/60
150
+ s . conclusion !== null
151
151
)
152
152
) {
153
153
throw new Retry ( )
Original file line number Diff line number Diff line change @@ -605,7 +605,7 @@ describe('pull_request', () => {
605
605
} )
606
606
607
607
test . each ( [
608
- // [null, true], was used for https://github.com/dawnlabs/ranger/issues/60
608
+ [ null , true ] , // TODO https://github.com/dawnlabs/ranger/issues/60
609
609
[ CONCLUSION . SUCCESS , true ] ,
610
610
[ CONCLUSION . NEUTRAL , true ] ,
611
611
[ CONCLUSION . TIMED_OUT , false ] ,
You can’t perform that action at this time.
0 commit comments