Skip to content

URL Health

URL Health #3977

Workflow file for this run

name: URL Health
on:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 */6 * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check the deployed service URL
uses: jtalk/url-health-check-action@v1.2
with:
# Check the following URLs one by one sequentially
url: https://juanitorduz.github.io/
# 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