Fix stage deletion by removing unused tables #1327
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 }} |