diff --git a/.github/workflows/health_check.yml b/.github/workflows/health_check.yml new file mode 100644 index 0000000..de37614 --- /dev/null +++ b/.github/workflows/health_check.yml @@ -0,0 +1,16 @@ +name: "Health Check" + +on: + schedule: + - cron: "0 */6 * * *" + +jobs: + healthcheck: + runs-on: ubuntu-22.04 + steps: + - name: Release API Health Check + uses: jtalk/url-health-check-action@v3 + with: + url: "https://sumtime-be.w8385.dev/api" + max-attempts: 3 + retry-delay: 1s