Skip to content

Commit

Permalink
fix(cli): do not capitalize commit messages
Browse files Browse the repository at this point in the history
  • Loading branch information
hasundue committed Nov 3, 2023
1 parent 22c8e15 commit 0608cd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -314,10 +314,10 @@ function _summary(
return sequence.commits[0].message;
}
const groups = sequence.commits.map((commit) => commit.group).join(", ");
const full = _formatPrefix(options.prefix) + `Update ${groups}`;
const full = _formatPrefix(options.prefix) + `update ${groups}`;
return (full.length <= 50)
? full
: _formatPrefix(options.prefix) + "Update dependencies";
: _formatPrefix(options.prefix) + "update dependencies";
}

function _report(sequence: GitCommitSequence): string {
Expand Down

0 comments on commit 0608cd9

Please sign in to comment.