Skip to content

Commit 5c27873

Browse files
authored
chore(ci): fix releaser script (#5953)
1 parent 1b553e9 commit 5c27873

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/releaser.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ function generate_changelog {
99
echo
1010
echo "## :warning: Breaking Changes"
1111
echo
12-
cat "${MERGED_PRS}" | grep "\!"
12+
cat "${MERGED_PRS}" | grep "\!" || true # no breaking change, section should be removed.
1313

1414
echo
1515
echo "## :rocket: Features"
@@ -35,7 +35,7 @@ function generate_changelog {
3535
echo "## :package: Docker Image"
3636
echo
3737
echo "\`\`\`sh"
38-
echo "# This pull command only works when it's released
38+
echo "# This pull command only works when it's released"
3939
echo "docker pull registry.k8s.io/external-dns/external-dns:${VERSION}"
4040
echo "\`\`\`"
4141

0 commit comments

Comments
 (0)