Populate spreadsheet #23071
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: Populate spreadsheet | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- '*' | |
schedule: | |
- cron: "*/15 * * * *" | |
jobs: | |
populate-data: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
cache: pip | |
- name: Install dependencies | |
run: pip install -r requirements.txt | |
- name: "Setup Google service account credentials" | |
run: echo "${{ secrets.GOOGLE_SHEETS_SERVICE_ACCOUNT }}" | base64 -d > service_account.json | |
- name: Run script | |
env: | |
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
BUSINESS_ACCESS_TOKEN: ${{ secrets.BUSINESS_ACCESS_TOKEN }} | |
JOINT_ACCESS_TOKEN: ${{ secrets.JOINT_ACCESS_TOKEN }} | |
run: python starling_to_sheets.py |