github-actions(deps): bump aws-actions/amazon-ecs-deploy-task-definition from 16f052ed696e6e5bf88c208a8e5ba1af7ced3310 to 4d6fb3b487851733f82c7cd442c3d5cdebc4fa8f #2313
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
# Based on https://docs.github.com/en/actions/deployment/deploying-to-your-cloud-provider/deploying-to-amazon-elastic-container-service | |
name: PR Updated triggers | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
env: | |
AWS_REGION: us-east-1 | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
ci: | |
uses: ./.github/workflows/ci.yml | |
build-all: | |
uses: ./.github/workflows/ecrbuild-all.yml | |
secrets: | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
e2e: | |
needs: | |
- build-all | |
# could theoretically be skipped, but in practice is always faster | |
# than waiting for the build-all job to finish anyway | |
- ci | |
uses: ./.github/workflows/e2e.yml | |
secrets: | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} |