Ensure to not assign new workload to Mountpoint Pod if its created wi… #503
This file contains hidden or 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: "E2E Tests (Trusted)" | |
| on: | |
| push: | |
| branches: [ "main", "release-**", "workflow/**" ] | |
| merge_group: | |
| types: [ "checks_requested" ] | |
| pull_request: | |
| permissions: | |
| id-token: write | |
| contents: read | |
| jobs: | |
| e2e: | |
| name: E2E Tests | |
| if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.id == github.event.pull_request.base.repo.id }} | |
| uses: ./.github/workflows/e2e-tests.yaml | |
| with: | |
| environment: "trusted" | |
| ref: ${{ (github.event_name == 'push' && github.sha) || (github.event_name == 'pull_request' && github.event.pull_request.head.sha) || github.event.merge_group.head_sha }} | |
| secrets: inherit |