github-actions(deps): bump aws-actions/amazon-ecs-render-task-definition from c804dfbdd57f713b6c079302a4c01db7017a36fc to 810fbfaf318eaa52893178d534f0c9289a1eda3c #2265
Workflow file for this run
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 | |
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 }} |