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

github-bot pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion.git


The following commit(s) were added to refs/heads/main by this push:
     new 49776a65e4 chore: Add confirmation before tarball is released (#20207)
49776a65e4 is described below

commit 49776a65e423890a3eefea8729ba67511fbf0ee4
Author: Marko Milenković <[email protected]>
AuthorDate: Wed Feb 11 09:15:40 2026 +0000

    chore: Add confirmation before tarball is released (#20207)
    
    ## Which issue does this PR close?
    
    - Closes #.
    
    ## Rationale for this change
    
    Add confirmation dialogue to confirm tarball release
    
    ## What changes are included in this PR?
    
    Update `tarball-release.sh` to ask `y/N` confirmation before it proceeds
    to release upload
    
    ## Are these changes tested?
    
    
    ## Are there any user-facing changes?
    
    No
---
 dev/release/release-tarball.sh | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/dev/release/release-tarball.sh b/dev/release/release-tarball.sh
index bd858d23a7..a284b6c435 100755
--- a/dev/release/release-tarball.sh
+++ b/dev/release/release-tarball.sh
@@ -43,6 +43,13 @@ fi
 version=$1
 rc=$2
 
+read -r -p "Proceed to release tarball for ${version}-rc${rc}? [y/N]: " answer
+answer=${answer:-no}
+if [ "${answer}" != "y" ]; then
+  echo "Cancelled tarball release!"
+  exit 1
+fi
+
 tmp_dir=tmp-apache-datafusion-dist
 
 echo "Recreate temporary directory: ${tmp_dir}"


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to