AWS E2E Tests (Non-root) - 11122417769 - @gzdunek #10256
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
# This workflow is required to ensure that required Github check passes even if | |
# the actual "Kube Integration Tests (Non-root)" workflow skipped due to path filtering. | |
# Otherwise it will stay forever pending. | |
# | |
# See "Handling skipped but required checks" for more info: | |
# | |
# https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks#handling-skipped-but-required-checks | |
# | |
# Note both workflows must have the same name. | |
name: AWS E2E Tests (Non-root) | |
run-name: AWS E2E Tests (Non-root) - ${{ github.run_id }} - @${{ github.actor }} | |
on: | |
pull_request: | |
paths-ignore: | |
- '.github/workflows/aws-e2e-tests-non-root.yaml' | |
- '**.go' | |
- 'go.mod' | |
- 'go.sum' | |
- 'build.assets/Makefile' | |
- 'build.assets/Dockerfile*' | |
- 'Makefile' | |
merge_group: | |
paths-ignore: | |
- '.github/workflows/aws-e2e-tests-non-root.yaml' | |
- '**.go' | |
- 'go.mod' | |
- 'go.sum' | |
- 'build.assets/Makefile' | |
- 'build.assets/Dockerfile*' | |
- 'Makefile' | |
jobs: | |
test: | |
name: AWS E2E Tests (Non-root) | |
runs-on: ubuntu-latest | |
permissions: | |
contents: none | |
steps: | |
- run: 'echo "No changes to verify"' |