Healthcheck #4
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
# @format | |
name: Healthcheck | |
on: | |
schedule: | |
- cron: "0 0 28 * *" | |
jobs: | |
healthcheck: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Library health check | |
uses: jtalk/url-health-check-action@f3f7bd79e4a64218eea7caad72796a1443896aeb | |
with: | |
url: ${{ secrets.HEALTH_CHECK_URL }} | |
max-attempts: 2 | |
retry-delay: 30s | |
- name: Test Success | |
uses: rjstone/discord-webhook-notify@89b0bf43c2c8514f70d0dcba4a706b904e8a3112 | |
if: success() | |
with: | |
severity: info | |
details: Healthcheck succeeded | |
webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} | |
- name: Test Failure | |
uses: rjstone/discord-webhook-notify@89b0bf43c2c8514f70d0dcba4a706b904e8a3112 | |
if: failure() | |
with: | |
severity: error | |
details: Healthcheck failed! | |
webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} |