We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a122fb commit 18b4e8fCopy full SHA for 18b4e8f
extra/make-changelog.py
@@ -13,7 +13,8 @@
13
14
for id in repo.iter_commits('%s..HEAD' % sys.argv[1]):
15
commit = repo.commit(id)
16
- changelog[commit.author.name].append(commit.summary)
+ if not commit.summary.startswith("Merge pull request "):
17
+ changelog[commit.author.name].append(commit.summary)
18
19
print('bash-completion (X.Y)')
20
print('')
0 commit comments