AP Tabulation and Race Call Statuses #3729
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: AP Tabulation and Race Call Statuses | |
on: | |
schedule: | |
- cron: "7 * * * *" | |
jobs: | |
build-node: | |
runs-on: ubuntu-latest | |
container: "node:20" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Dependencies | |
run: npm install | |
- name: Run Code | |
env: | |
SHEETS_ID: ${{secrets.SHEETS_ID}} | |
SLACK_TOKEN: ${{secrets.SLACK_TOKEN}} | |
AP_API_KEY: ${{secrets.AP_API_KEY}} | |
GOOGLE_CREDENTIALS: ${{secrets.GOOGLE_CREDENTIALS}} | |
run: node elex-tabulation-data/index.js |