Get Earnings Calendar Data #5
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: Get Earnings Calendar Data | |
on: | |
schedule: | |
- cron: '*/5 * * * *' | |
jobs: | |
run-scripts: | |
runs-on: ubuntu-latest | |
environment: OhEarningCal | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Reset local changes | |
run: | | |
git fetch origin main | |
git reset --hard origin/main | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
- name: Install dependencies | |
run: npm install | |
- name: Run fetchEarningsCalendarData script | |
run: node ./api/github_get.js | |
env: | |
SHOULD_GEN_SELECTED: ${{ vars.SHOULD_GEN_SELECTED }} | |
SHOULD_GEN_ALL: ${{ vars.SHOULD_GEN_ALL }} | |
- name: Commit files | |
run: | | |
git config --local user.email "action@github.com" | |
git config --local user.name "GitHub Action" | |
git add -A | |
git commit -m "Auto update earnings calendar files" -a || echo "No changes to commit" | |
git push --force |