Skip to content

Commit

Permalink
ci: ignore commits that aren't conventional
Browse files Browse the repository at this point in the history
  • Loading branch information
alexogeny committed Jul 31, 2024
1 parent 6f54f49 commit 41840b2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ci/generate_release_notes.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ def categorize_commits(commits: CommitList):
suffix = None

for commit in [c.lower().strip() for c in commits]:
if ":" not in commit: # ignore commits not matching the format
continue
prefix, message = commit.split(":", 1)
if prefix == "alpha":
suffix = "alpha"
Expand Down

0 comments on commit 41840b2

Please sign in to comment.