Skip to content

Commit e9433c8

Browse files
meorphismeorphis
andauthored
do not require conventional commits for release pr (#207)
Co-authored-by: meorphis <eric@stainless.com>
1 parent 9584892 commit e9433c8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/strategies/base.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,8 +285,8 @@ export abstract class BaseStrategy implements Strategy {
285285
manifestPath?: string;
286286
}): Promise<ReleasePullRequest | undefined> {
287287
const conventionalCommits = await this.postProcessCommits(commits);
288-
this.logger.info(`Considering: ${conventionalCommits.length} commits`);
289-
if (conventionalCommits.length === 0) {
288+
this.logger.info(`Considering: ${commits.length} commits`);
289+
if (commits.length === 0) {
290290
this.logger.info(`No commits for path: ${this.path}, skipping`);
291291
return undefined;
292292
}

0 commit comments

Comments
 (0)