Skip to content

Commit

Permalink
fix: keep stabilityDays pending check even if dashboard checked (#9799)
Browse files Browse the repository at this point in the history
  • Loading branch information
rarkins committed Apr 30, 2021
1 parent bc25520 commit 3c2b394
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions lib/workers/branch/index.ts
Expand Up @@ -217,10 +217,7 @@ export async function processBranch(
for (const upgrade of config.upgrades) {
if (upgrade.stabilityDays && upgrade.releaseTimestamp) {
const daysElapsed = getElapsedDays(upgrade.releaseTimestamp);
if (
!dependencyDashboardCheck &&
daysElapsed < upgrade.stabilityDays
) {
if (daysElapsed < upgrade.stabilityDays) {
logger.debug(
{
depName: upgrade.depName,
Expand Down

0 comments on commit 3c2b394

Please sign in to comment.