SNOW-2677419: Add support for resample functions in faster pandas #16280
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: Request Local Testing approval if necessary | |
| on: | |
| pull_request: | |
| types: [review_requested, review_request_removed, opened, synchronize] | |
| branches: | |
| - main | |
| jobs: | |
| request_review: | |
| if: ${{!contains(toJSON(github.event.pull_request.requested_teams), 'local-testing')}} | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Check for local-testing changes | |
| id: check-diff | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| url: ${{ github.event.pull_request.html_url }} | |
| run: | | |
| if gh pr diff "$url" | grep "^+" | grep "local_testing_mode"; then echo "Seems like your changes contain some Local Testing changes, please request review from @snowflakedb/local-testing"; exit 1; else echo "PR does not seem to contain Local Testing changes"; fi |