Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
tails
tails
Commits
3700dc60
Commit
3700dc60
authored
Aug 24, 2020
by
intrigeri
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
generate-changelog: skip merge commits
parent
8e0865e6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
bin/generate-changelog
bin/generate-changelog
+5
-1
No files found.
bin/generate-changelog
View file @
3700dc60
...
...
@@ -85,7 +85,11 @@ class ChangelogGenerator(object):
}
for
issue
in
mr
.
closes_issues
()
],
"commit_messages"
:
[
commit
.
title
for
commit
in
mr
.
commits
()],
"commit_messages"
:
[
commit
.
title
for
commit
in
mr
.
commits
()
# Ignore merge commits
if
len
(
project
.
commits
.
get
(
commit
.
id
).
parent_ids
)
==
1
],
})
# yapf: enable
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment