Generate statistics page #210
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: Generate statistics page | |
on: | |
schedule: | |
- cron: "0 5 * * 1" | |
workflow_dispatch: | |
jobs: | |
stats-page: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./docs/scripts | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install -r ./stats_requirements.txt | |
- name: Generate stats | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_WAREHOUSE_BUCKET: ${{ secrets.AWS_WAREHOUSE_BUCKET }} | |
run: python stats.py | |
- name: Create Pull Request with changes | |
id: cpr | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
title: '[Stats] Automatically generated update' | |
body: | | |
Update statistics page | |
- New numbers | |
- Updated with *today's* date | |
branch: stats-update | |
branch-suffix: timestamp | |
delete-branch: true | |
- name: Check outputs | |
run: | | |
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}" | |
echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}" |