Create check_uptime.yml

This commit is contained in:
Waylon Walker 2020-03-15 22:46:49 -05:00 committed by GitHub
parent b78fdd4f32
commit 39db62907f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

16
.github/workflows/check_uptime.yml vendored Normal file
View file

@ -0,0 +1,16 @@
name: check if site is up
on:
schedule:
- cron: '* * * * *'
jobs:
ping_site:
runs-on: ubuntu-latest
name: Ping the site
steps:
- name: Check the site
id: hello
uses: srt32/uptime@master
with:
url-to-hit: "https://default-kedro-157.waylonwalker.com/"
expected-statuses: "200,301"