Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions config/helm/aws-node-termination-handler/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: aws-node-termination-handler
description: A Helm chart for the AWS Node Termination Handler.
type: application
version: 0.17.0
appVersion: 1.15.0
version: 0.18.0
appVersion: 1.16.0
kubeVersion: ">= 1.16-0"
keywords:
- aws
Expand Down
3 changes: 2 additions & 1 deletion scripts/prepare-for-release
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,8 @@ EOM
# gh actions cannot respond to prompts
if [[ $RELEASE_PREP == true ]]; then
while true; do
read -p "🥑${BOLD}Do you wish to create the release prep PR? Enter y/n " yn
echo -e "🥑${BOLD}Do you wish to create the release prep PR? Enter y/n"
read -p "" yn
case $yn in
[Yy]* ) create_pr; break;;
[Nn]* ) rollback; exit;;
Expand Down