Runtime Heartbeat #144
This file contains hidden or 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: Runtime Heartbeat | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| lookback_hours: | |
| description: "Runtime workflow lookback window in hours." | |
| required: false | |
| type: string | |
| default: "2.5" | |
| fail_workflow_on_alert: | |
| description: "Fail this workflow when an alert is emitted." | |
| required: false | |
| type: choice | |
| default: "true" | |
| options: | |
| - "true" | |
| - "false" | |
| schedule: | |
| - cron: "35 * * * *" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref_name }} | |
| cancel-in-progress: false | |
| jobs: | |
| heartbeat: | |
| name: Check Runtime workflow heartbeat | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| permissions: | |
| actions: read | |
| contents: read | |
| env: | |
| RUNTIME_HEARTBEAT_NAME: BinancePlatform Runtime | |
| RUNTIME_HEARTBEAT_WORKFLOW: main.yml | |
| RUNTIME_HEARTBEAT_LOOKBACK_HOURS: ${{ inputs.lookback_hours || vars.RUNTIME_HEARTBEAT_LOOKBACK_HOURS || '2.5' }} | |
| RUNTIME_HEARTBEAT_FAIL_WORKFLOW_ON_ALERT: ${{ inputs.fail_workflow_on_alert || vars.RUNTIME_HEARTBEAT_FAIL_WORKFLOW_ON_ALERT || 'true' }} | |
| GLOBAL_TELEGRAM_CHAT_ID: ${{ vars.GLOBAL_TELEGRAM_CHAT_ID }} | |
| TG_TOKEN: ${{ secrets.TG_TOKEN }} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Check recent Runtime workflow success | |
| run: python scripts/runtime_workflow_heartbeat.py |