Skip to content

Chore: Update GitHub action with assumed role #318

Chore: Update GitHub action with assumed role

Chore: Update GitHub action with assumed role #318

Workflow file for this run

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@v2

Check failure on line 17 in .github/workflows/deploy-ecs.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy-ecs.yml

Invalid workflow file

invalid value workflow reference: workflow file should have either a '.yml' or '.yaml' file extension
with:
app-name: arrow
environment: ${{ github.event.inputs.environment || 'dev' }}
secrets:
role-to-assume: ${{ secrets.AWS_ROLE_ARN }}
docker-repo: ${{ secrets.DOCKER_REPO }}
slack-webhook: ${{ secrets.SLACK_WEBHOOK }}