Skip to content
Merged
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
13 changes: 10 additions & 3 deletions .github/workflows/api-smoke-deployed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,16 @@ jobs:
echo "skip=true" >> "$GITHUB_OUTPUT"
exit 0
fi
echo "::error::No target URL configured."
echo "::error::Provide workflow input 'api_url' or set repo variable/secret SMOKE_API_URL."
exit 1

if [[ "${{ vars.SMOKE_STRICT }}" == "true" ]]; then
echo "::error::No target URL configured."
echo "::error::Provide workflow input 'api_url' or set repo variable/secret SMOKE_API_URL."
exit 1
fi

echo "::notice::No target URL configured for manual run. Skipping."
echo "skip=true" >> "$GITHUB_OUTPUT"
exit 0
fi

echo "Using API URL: $target"
Expand Down
Loading