Copy PAAS databases to AKS #67
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: Copy PAAS databases to AKS | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 2 * * *' # 02:00 UTC | |
jobs: | |
restore_db: | |
name: Restore DB | |
strategy: | |
matrix: | |
environment: [production] | |
max-parallel: 1 | |
uses: ./.github/workflows/restore-paas-db-to-aks.yml | |
with: | |
environment: ${{ matrix.environment }} | |
secrets: inherit |