Skip to content

Generate Stats Images #952

Generate Stats Images

Generate Stats Images #952

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Generate Stats Images
# Controls when the action will run. Triggers the workflow on push events
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in
# parallel
jobs:
# This workflow contains a single job called "build"
generate-stats:
# rahul-jha98/github-stats-transparent
name: Job to generate stats image
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Sequence of tasks that will be executed as part of the job
steps:
# Checks-out repository under $GITHUB_WORKSPACE, so the job can access it
- uses: actions/checkout@v4
# Run using Python 3.8 for consistency and aiohttp
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: '3.8'
architecture: 'x64'
# Cache dependencies. From:
# https://github.com/actions/cache/blob/master/examples.md#python---pip
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
# Install dependencies with `pip`
- name: Install requirements
run: |
python3 -m pip install --upgrade pip setuptools wheel
python3 -m pip install -r requirements.txt
# Generate all statistics images
- name: Generate images
run: |
python3 --version
python3 generate_images.py
env:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
EXCLUDED: ${{ secrets.EXCLUDED }}
EXCLUDED_LANGS: ${{ secrets.EXCLUDED_LANGS }}
COUNT_STATS_FROM_FORKS: ${{ secrets.COUNT_STATS_FROM_FORKS }}
# Commits all changed files to the repository
- uses: crazy-max/ghaction-github-pages@v4
with:
target_branch: stats
build_dir: generated
env:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
generate-snake:
# Platane/snk
name: Job to generate snake animation
# The type of runner that the job will run on
runs-on: ubuntu-latest
steps:
# Snake Animation
- uses: Platane/snk@v3
id: snake-gif
with:
github_user_name: greedysky
outputs: |
dist/overview.svg?palette=github-dark
env:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: crazy-max/ghaction-github-pages@v4
with:
target_branch: snake
build_dir: dist
env:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}