Skip to content

Commit 18b4e8f

Browse files
committed
make-changelog: Don't output "Merge pull request" entries
1 parent 1a122fb commit 18b4e8f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

extra/make-changelog.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313

1414
for id in repo.iter_commits('%s..HEAD' % sys.argv[1]):
1515
commit = repo.commit(id)
16-
changelog[commit.author.name].append(commit.summary)
16+
if not commit.summary.startswith("Merge pull request "):
17+
changelog[commit.author.name].append(commit.summary)
1718

1819
print('bash-completion (X.Y)')
1920
print('')

0 commit comments

Comments
 (0)