E2EMatrixTrigger #13
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
name: E2EMatrixTrigger | |
on: | |
workflow_dispatch: | |
push: | |
branches: [main] | |
pull_request_review: # TODO(charliedmcb): come back to this and factor out the E2E trigger like AWS and clean it up | |
types: [submitted] | |
permissions: | |
id-token: write # This is required for requesting the JWT | |
contents: read # This is required for actions/checkout | |
jobs: | |
e2e-matrix: | |
if: github.event_name != 'pull_request_review' || startsWith(github.event.review.body ,'/test') | |
uses: ./.github/workflows/e2e-matrix.yaml | |
secrets: | |
E2E_CLIENT_ID: ${{ secrets.E2E_CLIENT_ID }} | |
E2E_TENANT_ID: ${{ secrets.E2E_TENANT_ID }} | |
E2E_SUBSCRIPTION_ID: ${{ secrets.E2E_SUBSCRIPTION_ID }} |