Health Check Bot #11929
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# =================================================================== | |
# Health Check | |
# =================================================================== | |
name: Health Check Bot | |
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule | |
# github scheduler not supported seconds cron feature | |
on: | |
schedule: | |
# Just Run Every minute, but this action may be delayed https://crontab.guru | |
- cron: '*/1 * * * *' | |
push: | |
branches: 'main' | |
# Job Tasks | |
jobs: | |
health-check: | |
runs-on: ubuntu-latest | |
steps: | |
# Echo | |
- name: echo job | |
run: echo "Health Check" | |
# Start Job | |
- name: start Job | |
run: date | |
# =================================================================== | |
# Health Check Start | |
# =================================================================== | |
- name: oksusu health check | |
run: | | |
curl -X 'GET' \ | |
'https://api.oksusu.site/health' \ | |
-H 'accept: application/json' | |
# =================================================================== | |
# Health Check End | |
# =================================================================== | |
# End Job | |
- name: end Job | |
run: date |