Skip to content

Commit

Permalink
fix: indicate in logs if running in dry-run mode
Browse files Browse the repository at this point in the history
  • Loading branch information
pvdlg committed Nov 14, 2018
1 parent 5180001 commit e92c84e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -52,7 +52,7 @@ async function run(context, plugins) {
);
return false;
}
logger.success(`Run automated release from branch ${ciBranch}`);
logger.success(`Run automated release from branch ${ciBranch}${options.dryRun ? ' in dry-run mode' : ''}`);

await verify(context);

Expand Down

0 comments on commit e92c84e

Please sign in to comment.