Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions scripts/releaser.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function generate_changelog {
echo
echo "## :warning: Breaking Changes"
echo
cat "${MERGED_PRS}" | grep "\!"
cat "${MERGED_PRS}" | grep "\!" || true # no breaking change, section should be removed.

echo
echo "## :rocket: Features"
Expand All @@ -35,7 +35,7 @@ function generate_changelog {
echo "## :package: Docker Image"
echo
echo "\`\`\`sh"
echo "# This pull command only works when it's released
echo "# This pull command only works when it's released"
echo "docker pull registry.k8s.io/external-dns/external-dns:${VERSION}"
echo "\`\`\`"

Expand Down
Loading