Do not check for image for 2D/3D tests that don't involve an array #7258
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: Validate HIP PR description | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize] | |
| paths: | |
| - "projects/hip/**" | |
| - "projects/clr/**" | |
| - "projects/hipother/**" | |
| - "projects/hip-tests/**" | |
| jobs: | |
| validate-pr-description: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.13" | |
| - name: Validate PR description | |
| env: | |
| PR_DESCRIPTION: ${{ github.event.pull_request.body }} | |
| run: python .github/scripts/hip_validate_pr_description.py |