perf: Disable morsel splitting for fast-count on streaming engine #2776
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: 'changes-dsl labeler' | |
| on: | |
| - pull_request_target | |
| jobs: | |
| changes-dsl-labeler: | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Fetch PR merge commit | |
| run: | | |
| git fetch origin refs/pull/${{ github.event.number }}/merge:pr-merge-commit | |
| - name: Update label | |
| run: | | |
| if [ "$(git diff origin/main..pr-merge-commit crates/polars-plan/dsl-schema-hashes.json)" ]; then | |
| curl -s \ | |
| -X POST \ | |
| -H "Accept: application/vnd.github+json" \ | |
| -H 'Authorization: token ${{ github.token }}' \ | |
| 'https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.number }}/labels' \ | |
| -d '{"labels":["changes-dsl"]}' \ | |
| || true | |
| else | |
| curl -s \ | |
| -X DELETE \ | |
| -H 'Accept: application/vnd.github.v3+json' \ | |
| -H 'Authorization: token ${{ github.token }}' \ | |
| 'https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.number }}/labels/changes-dsl' \ | |
| || true | |
| fi |