Generate Stats Images #21150
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 Stats Images | |
on: | |
schedule: | |
- cron: "0 * * * *" | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.8' | |
architecture: 'x64' | |
- uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}-v2 | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Install requirements | |
run: | | |
cd ./status | |
python3 -m pip install --upgrade pip setuptools wheel | |
python3 -m pip install -r requirements.txt | |
- name: Generate images | |
run: | | |
cd ./status | |
python3 --version | |
python3 generate_images.py | |
env: | |
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} | |
CUSTOM_ACTOR: ${{ secrets.CUSTOM_ACTOR }} | |
EXCLUDED: ${{ secrets.EXCLUDED }} | |
EXCLUDED_LANGS: ${{ secrets.EXCLUDED_LANGS }} | |
EXCLUDED_USERS: ${{ secrets.EXCLUDED_USERS }} | |
INCLUDED_USERS: ${{ secrets.INCLUDED_USERS }} | |
STAT_UPLOAD_URL: ${{ secrets.STAT_UPLOAD_URL }} | |
EXCLUDE_FORKED_REPOS: true | |
EXCLUDE_ARCHIVED_REPOS: true | |
- name: Commit to the repo | |
run: | | |
chmod +x ./status/push.sh | |
sh ./status/push.sh |