Run BigQuery #9708
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: Run BigQuery | |
on: | |
workflow_dispatch: | |
schedule: | |
# "every 2 hours" | |
- cron: 0 */2 * * * | |
jobs: | |
fetch: | |
name: Fetch | |
runs-on: ubuntu-latest | |
permissions: | |
contents: 'write' | |
id-token: 'write' | |
steps: | |
- uses: actions/checkout@v4 | |
- id: auth | |
name: Authenticate to Google Cloud | |
uses: google-github-actions/auth@v1 | |
with: | |
credentials_json: ${{ secrets.GOOGLE_CREDENTIALS }} | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.x" | |
- name: Run BigQuery | |
run: | | |
python -m pip install -U pip | |
python -m pip install -r requirements.txt google-cloud-bigquery | |
python scripts/bigquery.py | |
# push changes back to the repo, this will trigger a new vercel build | |
# https://github.com/stefanzweifel/git-auto-commit-action | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: '[bot] BigQuery update' | |
commit_author: github-actions[bot] <github-actions[bot]@users.noreply.github.com> |