From fbf059cdb901ccd0ec1d9a48c2b362b09f8faed5 Mon Sep 17 00:00:00 2001 From: Charlie Drage Date: Thu, 12 Mar 2020 22:27:46 -0400 Subject: [PATCH] Update release script (#2712) **What type of PR is this?** > Uncomment only one ` /kind <>` line, hit enter to put that in a new line, and remove leading whitespace from that line: > /kind cleanup **What does does this PR do / why we need it**: Updates the release script to include other kinds / labels that weren't there **Which issue(s) this PR fixes**: N/A **How to test changes / Special notes to the reviewer**: N/A Signed-off-by: Charlie Drage --- scripts/changelog-script.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/changelog-script.sh b/scripts/changelog-script.sh index ede9d6e66..910a61f54 100755 --- a/scripts/changelog-script.sh +++ b/scripts/changelog-script.sh @@ -25,7 +25,7 @@ echo -e "# Installation of $2 To install odo, follow our installation guide at [docs.openshift.com]($INSTALLATION_GUIDE) -After each release, binaries synced on [mirror.openshift.com]($MIRROR)" > /tmp/base +After each release, binaries are synced to [mirror.openshift.com]($MIRROR)" > /tmp/base github_changelog_generator \ --user openshift \ @@ -43,9 +43,9 @@ github_changelog_generator \ --bugs-label "**Bugs:**" \ --bug-labels "kind/bug" \ --removed-label "**Tests:**" \ ---removed-labels "kind/flake,kind/test" \ ---security-label "**Documentation:**" \ ---security-labels "kind/docs,kind/documentation" +--removed-labels "kind/flake,kind/test,kind/failing-test" \ +--security-label "**Documentation & Discussions:**" \ +--security-labels "kind/docs,kind/documentation,kind/design,kind/discussion,kind/epic" echo "" echo "The changelog is located at: /tmp/changelog"