Daily checks #241
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
name: "Daily checks" | |
on: | |
schedule: | |
# runs at 1am everyday | |
- cron: '0 1 * * *' | |
jobs: | |
health-check: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Load secrets from 1Password | |
uses: 1Password/load-secrets-action@v2.0.0 | |
with: | |
export-env: true | |
env: | |
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }} | |
SENTRY_DSN: op://secrets/sentry-health-monitoring/dsn | |
- name: Health Check of Unlock Protocol | |
uses: ./.github/actions/health-check |