add debug cmd #2
Workflow file for this run
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: 24-Hour Monitoring | |
on: | |
push: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * *" # Run every 24 hours at midnight UTC | |
jobs: | |
run-retryable-monitoring: | |
strategy: | |
matrix: | |
chain: [core, orbit] | |
uses: ./.github/workflows/monitoring.yml | |
with: | |
chain: ${{ matrix.chain }} | |
monitor: retryable | |
secrets: inherit |