Skip to content

Commit

Permalink
dependency-dashboard: Fix more dry run log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
Turbo87 committed Sep 20, 2021
1 parent c1007e5 commit b537528
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/workers/repository/dependency-dashboard.ts
Expand Up @@ -136,8 +136,8 @@ export async function ensureDependencyDashboard(
if (config.dependencyDashboardAutoclose && !hasBranches) {
if (getGlobalConfig().dryRun) {
logger.info(
'DRY-RUN: Would close Dependency Dashboard ' +
config.dependencyDashboardTitle
{ title: config.dependencyDashboardTitle },
'DRY-RUN: Would close Dependency Dashboard'
);
} else {
logger.debug('Closing Dependency Dashboard');
Expand Down Expand Up @@ -349,8 +349,8 @@ export async function ensureDependencyDashboard(

if (getGlobalConfig().dryRun) {
logger.info(
'DRY-RUN: Would ensure Dependency Dashboard ' +
config.dependencyDashboardTitle
{ title: config.dependencyDashboardTitle },
'DRY-RUN: Would ensure Dependency Dashboard'
);
} else {
await platform.ensureIssue({
Expand Down

0 comments on commit b537528

Please sign in to comment.