We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9584892 commit e9433c8Copy full SHA for e9433c8
1 file changed
src/strategies/base.ts
@@ -285,8 +285,8 @@ export abstract class BaseStrategy implements Strategy {
285
manifestPath?: string;
286
}): Promise<ReleasePullRequest | undefined> {
287
const conventionalCommits = await this.postProcessCommits(commits);
288
- this.logger.info(`Considering: ${conventionalCommits.length} commits`);
289
- if (conventionalCommits.length === 0) {
+ this.logger.info(`Considering: ${commits.length} commits`);
+ if (commits.length === 0) {
290
this.logger.info(`No commits for path: ${this.path}, skipping`);
291
return undefined;
292
}
0 commit comments