Refresh migration DB from production DB #33
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: Refresh migration DB from production DB | |
on: | |
workflow_dispatch: | |
inputs: | |
environment: | |
description: GitHub environment to refresh from | |
type: choice | |
default: production | |
options: | |
- production | |
required: true | |
jobs: | |
refresh-migration-db: | |
runs-on: ubuntu-20.04 | |
environment: production | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Refresh migration DB | |
uses: ./.github/actions/refresh-migration-database | |
with: | |
environment: production | |
azure-credentials: ${{ secrets.AZURE_CREDENTIALS }} |