We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 363f287 commit b7d3d58Copy full SHA for b7d3d58
2 files changed
ephemeral/shutdown/action.yml
@@ -44,7 +44,7 @@ runs:
44
local count=0
45
local wait=5
46
while [ $count -lt $retries ]; do
47
- "$@"
+ ( set +e; "$@"; ) # Run command in subshell with set -e disabled
48
local exit_code=$?
49
if [ $exit_code -eq 0 ]; then
50
return 0
ephemeral/startup/action.yml
@@ -80,7 +80,7 @@ runs:
80
81
82
83
84
85
86
@@ -94,7 +94,7 @@ runs:
94
}
95
96
fetch_instances() {
97
- list_response=$(curl --fail-with-body -X GET \
+ list_response=$(curl --fail-with-body -s -X GET \
98
-H "$AUTH_HEADER" \
99
-H "$CONTENT_TYPE_HEADER" \
100
"$API_URL_BASE")
0 commit comments