You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
URL Health Check
v1.3
A cURL-based post-deploy health check with build-in redirect & retry. An quick & easy way to verify a deployment.
steps:
- name: Check the deployed service URL
uses: jtalk/[email protected]
with:
# Check the following URLs one by one sequentially
url: https://example.com|http://example.com
# Follow redirects, or just report success on 3xx status codes
follow-redirect: no # Optional, defaults to "no"
# Fail this action after this many failed attempts
max-attempts: 3 # Optional, defaults to 1
# Delay between retries
retry-delay: 5s # Optional, only applicable to max-attempts > 1
The action will fail if any of the URLs reports either 4xx or 5xx status codes.