Skip to content

Commit 0d885cc

Browse files
author
LeanBitLab
committed
ci: only filter jules merge commits in release notes
1 parent 56abe6b commit 0d885cc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/scripts/generate_release_notes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def main():
2323
commits = []
2424
for c in raw_list:
2525
c_lower = c.lower()
26-
if c_lower.startswith("merge pull request") or c_lower.startswith("merge branch"):
26+
if "leanbitlab/jules" in c_lower or "jules" in c_lower:
2727
continue
2828
if c_lower.startswith("chore: update daily downloads and stars badges"):
2929
continue

0 commit comments

Comments
 (0)