Send today's schdeule #200
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: Send today's schdeule | |
on: | |
schedule: | |
- cron: "52 11 * * *" | |
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-testing-results/slack/sendSchedule.js |