From 8e1cc4c638c2cfec1a1c6ccb5ff193e0e2e5ce71 Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Tue, 3 Feb 2026 16:59:55 -0800 Subject: [PATCH] Remove confirmation prompt from container-tag-and-release Allows the task to run non-interactively. Co-Authored-By: Claude Opus 4.5 --- mise-tasks/container-tag-and-release | 8 -------- 1 file changed, 8 deletions(-) diff --git a/mise-tasks/container-tag-and-release b/mise-tasks/container-tag-and-release index 7372a35..068b164 100755 --- a/mise-tasks/container-tag-and-release +++ b/mise-tasks/container-tag-and-release @@ -52,14 +52,6 @@ echo "Directory: $CONTAINER_DIR" echo "Image: registry.ops.eblu.me/$IMAGE:$VERSION" echo "" -# Confirm -read -p "Create tag and push? [y/N] " -n 1 -r -echo -if [[ ! $REPLY =~ ^[Yy]$ ]]; then - echo "Aborted." - exit 0 -fi - # Create and push tag git tag "$TAG" git push origin "$TAG"