File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
lib/workers/repository/process/lookup Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ import { getUpdateType } from './update-type';
1919export interface InternalChecksResult {
2020 release ?: Release ;
2121 pendingChecks : boolean ;
22- pendingReleases ? : Release [ ] ;
22+ pendingReleases : Release [ ] ;
2323}
2424
2525export async function filterInternalChecks (
Original file line number Diff line number Diff line change @@ -522,9 +522,8 @@ export async function lookupUpdates(
522522 update . pendingChecks = pendingChecks ;
523523 }
524524
525- // TODO #22198
526- if ( pendingReleases ! . length ) {
527- update . pendingVersions = pendingReleases ! . map ( ( r ) => r . version ) ;
525+ if ( pendingReleases . length ) {
526+ update . pendingVersions = pendingReleases . map ( ( r ) => r . version ) ;
528527 }
529528 if ( ! update . newValue || update . newValue === compareValue ) {
530529 if ( ! config . lockedVersion ) {
You can’t perform that action at this time.
0 commit comments