Skip to content

Commit

Permalink
Merge pull request #864 from DirectXMan12/infra/tolerate-extra-rel-no…
Browse files Browse the repository at this point in the history
…tes-merges

🏃 Tolerate (more) merge commits in release notes
  • Loading branch information
k8s-ci-robot authored Mar 18, 2020
2 parents 3ce25e2 + 2ea8546 commit 29e923a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions hack/release/release-notes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ while read commit_word commit; do
# skip temporary merge commits and accidental merge commit inclusion
# for calcuating release notes.
continue
elif [[ ${title} == "Merge branch '"*"'"* ]]; then
# skip for accidental merge commit inclusion for calculating release notes
# NB(directxman12): it's not clear what tool generates this style, but we've
# got some now, so tolerate them.
continue
fi

read # skip the blank line
Expand Down

0 comments on commit 29e923a

Please sign in to comment.