Columnar query engine filter handle == null filters
#252
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: "Tidy Renovate PRs" | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request_target: | |
| types: [opened, synchronize, reopened] | |
| branches: | |
| - main | |
| jobs: | |
| tidy: | |
| permissions: | |
| contents: write | |
| runs-on: ubuntu-latest | |
| if: ${{ github.actor == 'renovate[bot]' }} | |
| steps: | |
| - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 | |
| with: | |
| fetch-depth: 0 | |
| ref: ${{ github.head_ref }} | |
| - uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0 | |
| with: | |
| go-version: "1.25.4" | |
| - name: make genotelarrowcol | |
| # This also runs 'go mod tidy' as part of its process | |
| run: make genotelarrowcol | |
| - name: Commit changes | |
| run: | | |
| # Configure git for otelbot | |
| git config user.name otelbot | |
| git config user.email [email protected] | |
| if ! git diff --exit-code; then | |
| git add . | |
| git commit -m "make genotelarrowcol" | |
| git push | |
| fi |