You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by pa...@apache.org on 2022/10/13 20:16:57 UTC

[beam] branch pabloem-patch-2 created (now 87a901f664b)

This is an automated email from the ASF dual-hosted git repository.

pabloem pushed a change to branch pabloem-patch-2
in repository https://gitbox.apache.org/repos/asf/beam.git


      at 87a901f664b Update publish_release_notes to generate PR list

This branch includes the following new commits:

     new 87a901f664b Update publish_release_notes to generate PR list

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[beam] 01/01: Update publish_release_notes to generate PR list

Posted by pa...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

pabloem pushed a commit to branch pabloem-patch-2
in repository https://gitbox.apache.org/repos/asf/beam.git

commit 87a901f664b8c600fed57683dfdbf299649ce611
Author: Pablo Estrada <pa...@users.noreply.github.com>
AuthorDate: Thu Oct 13 16:16:47 2022 -0400

    Update publish_release_notes to generate PR list
    
    This will include auto-generated notes appended after the "body" that we pass in.
---
 release/src/main/scripts/publish_github_release_notes.sh | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/release/src/main/scripts/publish_github_release_notes.sh b/release/src/main/scripts/publish_github_release_notes.sh
index 62403106c8e..683dbfef499 100755
--- a/release/src/main/scripts/publish_github_release_notes.sh
+++ b/release/src/main/scripts/publish_github_release_notes.sh
@@ -41,7 +41,8 @@ REQUEST_JSON="$(cat <<-EOF
 {
   "tag_name": "v${RELEASE_VER}",
   "name": "Beam ${RELEASE_VER} release",
-  "body": ${ESCAPED_NOTES}
+  "body": ${ESCAPED_NOTES},
+  "generate_release_notes": true
 }
 EOF
 )"
@@ -66,4 +67,4 @@ case $input in
     echo "Aborting..."
     exit 1
     ;;
-esac
\ No newline at end of file
+esac