Update Data Daily #44
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: Update Data Daily | |
on: | |
schedule: | |
- cron: '0 1 * * *' | |
workflow_dispatch: | |
jobs: | |
update_data: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install requests | |
- name: Fetch latest changes | |
run: | | |
git fetch origin main | |
git reset --hard origin/main | |
- name: Run Python script | |
run: python _scripts/collect_data.py | |
env: | |
RATED_API_KEY: ${{ secrets.RATED_TOKEN }} | |
MIGALABS_API_KEY: ${{ secrets.MIGALABS_TOKEN }} | |
ERROR_REPORT_ENDPOINT: ${{ secrets.GOOGLE_FORM_ERROR_REPORT_URL }} | |
- name: Commit and push changes | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
git config --global user.name "github-actions[bot]" | |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git add * | |
git diff --quiet && git diff --staged --quiet || (git commit -m "Update client distribution data" && git push https://${GITHUB_TOKEN}@github.com/${{ github.repository }}.git HEAD:${{ github.ref }}) |