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 c29fe20 commit b4a7811Copy full SHA for b4a7811
hack/release/release-notes.sh
@@ -21,7 +21,16 @@ NEWLINE="
21
"
22
head_commit=$(git rev-parse HEAD)
23
while read commit_word commit; do
24
+ if [[ -z ${commit_word} ]]; then
25
+ # skip terminating blank lines
26
+ continue
27
+ fi
28
read title
29
+ if [[ ${title} == "Merge branch '"*"' into release-"* ]]; then
30
+ # skip temporary merge commits for calculating release notes
31
32
33
+
34
read # skip the blank line
35
read prefix body
36
0 commit comments