feat(datasets): Implement spark.GBQQueryDataset
for reading data from BigQuery as a spark dataframe using SQL query
#2975
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
name: Merge Gatekeeper | |
on: | |
pull_request: | |
branches: | |
- main | |
- develop | |
jobs: | |
merge-gatekeeper: | |
runs-on: ubuntu-latest | |
# Restrict permissions of the GITHUB_TOKEN. | |
# Docs: https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs | |
permissions: | |
checks: read | |
statuses: read | |
steps: | |
- name: Run Merge Gatekeeper | |
# NOTE: v1 is updated to reflect the latest v1.x.y. Please use any tag/branch that suits your needs: | |
# https://github.com/upsidr/merge-gatekeeper/tags | |
# https://github.com/upsidr/merge-gatekeeper/branches | |
uses: upsidr/merge-gatekeeper@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
timeout: 2400 | |
interval: 30 | |
ignored: 'Required Reviews' |