chore: Fix structure.sql to align with what current migrations produc… #911
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: Deploy to ECS | |
on: | |
schedule: | |
- cron: '0 5 * * *' | |
workflow_dispatch: | |
inputs: | |
environment: | |
type: environment | |
required: true | |
default: dev | |
push: | |
branches: master | |
jobs: | |
call-workflow: | |
uses: mbta/workflows/.github/workflows/deploy-ecs.yml@v2 | |
with: | |
app-name: arrow | |
environment: ${{ github.event.inputs.environment || 'dev' }} | |
secrets: | |
aws-role-arn: ${{ secrets.AWS_ROLE_ARN }} | |
docker-repo: ${{ secrets.DOCKER_REPO }} | |
slack-webhook: ${{ secrets.SLACK_WEBHOOK }} |