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

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


The following commit(s) were added to refs/heads/main by this push:
     new b555df52 chore: add confirmation before tarball is released (#1372)
b555df52 is described below

commit b555df524acdce90121b6b7de9dd5f78189bd04e
Author: Marko Milenković <[email protected]>
AuthorDate: Sun Feb 8 12:21:48 2026 +0000

    chore: add confirmation before tarball is released (#1372)
---
 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 8c305a67..2b82d1ba 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-python-dist
 
 echo "Recreate temporary directory: ${tmp_dir}"


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

Reply via email to