This hits a specific url on an interval until a specific status is the result
statusCode defaults to 200 checkIntervalSeconds defaults to 10 maxNumberOfChecks defaults to 60
on: push
jobs:
process:
runs-on: ubuntu-latest
steps:
- name: wait until https://www.cnn.com is up
uses: r26d/[email protected]
with:
url: https://www.cnn.com
statusCode: 200
checkIntervalSeconds: 10
maxNumberOfChecks: 60
Based on Work by Wei Wei He [email protected]
MIT - r26D,LLC