Daily Table Integrity Check Scheduler #601
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: Daily Table Integrity Check Scheduler | |
| on: | |
| schedule: | |
| # Invoke every 12 hours | |
| - cron: '0 */12 * * *' | |
| workflow_dispatch: null | |
| jobs: | |
| check-tables: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| environment: | |
| - name: dev | |
| - name: staging | |
| - name: production | |
| - name: preview | |
| uses: ./.github/workflows/fac_backup-check-tables.yml | |
| secrets: inherit | |
| with: | |
| environment: ${{ matrix.environment.name }} | |
| util_version: "v0.1.11" | |
| backup_operation: "check_tables" |