Add Github Action for E2E tests #1
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: Trigger e2e tests on pull_request_target | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
types: | ||
- opened | ||
- synchronize | ||
- reopened | ||
pull_request_target: | ||
types: | ||
- opened | ||
- synchronize | ||
- reopened | ||
permissions: | ||
contents: read | ||
defaults: | ||
run: | ||
shell: bash | ||
jobs: | ||
e2e: | ||
strategy: | ||
matrix: | ||
e2e-labels: | ||
- "capx" | ||
fail-fast: false | ||
uses: ./.github/workflows/e2e.yml | ||
Check failure on line 32 in .github/workflows/pull_request_target.yaml GitHub Actions / .github/workflows/pull_request_target.yamlInvalid workflow file
|
||
with: | ||
e2e-labels: ${{ matrix.e2e-labels }} | ||
secrets: inherit | ||
permissions: | ||
contents: read | ||
checks: write |