[MINOR] Support schema evolution with array struct type #31221
Workflow file for this run
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 pr | |
| on: | |
| pull_request: | |
| types: [opened, edited, reopened, synchronize] | |
| branches: | |
| - master | |
| - branch-0.x | |
| jobs: | |
| validate-pr: | |
| runs-on: ubuntu-latest | |
| env: | |
| REQUEST_BODY: ${{ github.event.pull_request.body }} | |
| REQUEST_TITLE: ${{ github.event.pull_request.title }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-python@v3 | |
| - name: run script | |
| run: python3 scripts/pr_compliance.py | |