Fix Flask health endpoint collision (#181) #46
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: Execution Report Heartbeat | ||
| on: | ||
| workflow_dispatch: | ||
| inputs: | ||
| lookback_hours: | ||
| description: "Report lookback window in hours." | ||
| required: false | ||
| type: string | ||
| default: "36" | ||
| fail_workflow_on_alert: | ||
| description: "Fail this workflow when an alert is emitted." | ||
| required: false | ||
| type: choice | ||
| default: "true" | ||
| options: | ||
| - "true" | ||
| - "false" | ||
| schedule: | ||
| # cron disabled — notify only on trades/errors "10 23 * * 1-5" | ||
| env: | ||
| GCP_PROJECT_ID: firstradequant | ||
| GCP_WORKLOAD_IDENTITY_PROVIDER: projects/1088907247379/locations/global/workloadIdentityPools/github-actions/providers/github-main | ||
| GCP_WORKLOAD_IDENTITY_SERVICE_ACCOUNT: firstrade-platform-deploy@firstradequant.iam.gserviceaccount.com | ||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.ref_name }} | ||
| cancel-in-progress: false | ||
| jobs: | ||
| heartbeat: | ||
| name: Check execution report heartbeat | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 15 | ||
| permissions: | ||
| contents: read | ||
| id-token: write | ||
| env: | ||
| RUNTIME_HEARTBEAT_NAME: FirstradePlatform | ||
| RUNTIME_HEARTBEAT_LOOKBACK_HOURS: ${{ inputs.lookback_hours || vars.RUNTIME_HEARTBEAT_LOOKBACK_HOURS || '36' }} | ||
| RUNTIME_HEARTBEAT_FAIL_WORKFLOW_ON_ALERT: ${{ inputs.fail_workflow_on_alert || vars.RUNTIME_HEARTBEAT_FAIL_WORKFLOW_ON_ALERT || 'true' }} | ||
| RUNTIME_HEARTBEAT_ACCEPT_STAGES: ${{ vars.RUNTIME_HEARTBEAT_ACCEPT_STAGES }} | ||
| RUNTIME_HEARTBEAT_REJECT_STAGES: ${{ vars.RUNTIME_HEARTBEAT_REJECT_STAGES }} | ||
| RUNTIME_TARGET_ENABLED: ${{ vars.RUNTIME_TARGET_ENABLED }} | ||
| RUNTIME_TARGET_JSON: ${{ vars.RUNTIME_TARGET_JSON }} | ||
| FIRSTRADE_GCS_STATE_BUCKET: ${{ vars.FIRSTRADE_GCS_STATE_BUCKET }} | ||
| FIRSTRADE_STATE_PREFIX: ${{ vars.FIRSTRADE_STATE_PREFIX }} | ||
| GLOBAL_TELEGRAM_CHAT_ID: ${{ vars.GLOBAL_TELEGRAM_CHAT_ID }} | ||
| TELEGRAM_TOKEN: ${{ secrets.TELEGRAM_TOKEN }} | ||
| TELEGRAM_TOKEN_SECRET_NAME: ${{ vars.TELEGRAM_TOKEN_SECRET_NAME }} | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v6 | ||
| - name: Authenticate to Google Cloud | ||
| uses: google-github-actions/auth@v3 | ||
| with: | ||
| workload_identity_provider: ${{ env.GCP_WORKLOAD_IDENTITY_PROVIDER }} | ||
| service_account: ${{ env.GCP_WORKLOAD_IDENTITY_SERVICE_ACCOUNT }} | ||
| - name: Set up gcloud | ||
| uses: google-github-actions/setup-gcloud@v3 | ||
| - name: Check recent execution report | ||
| run: python scripts/execution_report_heartbeat.py | ||