Data Fetch #555
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: Data Fetch | |
on: | |
schedule: | |
- cron: "0 7 * * *" # Every day at midnight PDT | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.WORKFLOW_PUSH_BOT_TOKEN }} | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "lts/*" | |
- name: Install npm packages | |
run: npm install | |
- name: Fetch team data | |
run: npm run fetch:team | |
env: | |
ESLINT_GITHUB_TOKEN: ${{ secrets.DATA_FETCH_TOKEN }} | |
- name: Fetch project stats | |
run: npm run fetch:stats | |
env: | |
ESLINT_GITHUB_TOKEN: ${{ secrets.DATA_FETCH_TOKEN }} | |
- name: Fetch sponsor data | |
run: npm run fetch:sponsors | |
env: | |
ESLINT_GITHUB_TOKEN: ${{ secrets.DATA_FETCH_TOKEN }} | |
- name: Setup Git | |
run: | | |
git config user.name "GitHub Actions Bot" | |
git config user.email "<[email protected]>" | |
- name: Save updated files | |
run: | | |
chmod +x ./tools/commit-data.sh | |
./tools/commit-data.sh |