feat: compile and execute partitioned query #2327
Workflow file for this run
This file contains 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
# Applies labels to PRs based on paths changed. | |
# Uses the labels defined in `.github/release-drafter.yml`. | |
name: Pull request labeler | |
on: | |
# Use `pull_request_target` so we get write permission to the PR | |
# even on PRs *from* forks of this repository. | |
# | |
# https://github.com/actions/labeler/issues/121 | |
pull_request_target: | |
types: [opened, edited, synchronize] | |
# In cases of concurrent workflows running (consecutive pushes to PR) | |
# leave the latest workflow and cancel the other (older) workflows | |
# See https://docs.github.com/en/actions/using-jobs/using-concurrency | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Label pull request | |
uses: release-drafter/release-drafter@v5 | |
with: | |
config-name: release-drafter.yml # (default) | |
disable-releaser: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |