Skip to content

Generate Repo Stats #44

Generate Repo Stats

Generate Repo Stats #44

Workflow file for this run

name: Generate Repo Stats
on:
push:
branches:
- main
schedule:
- cron: '0 0 * * *'
jobs:
generate-stats:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
npm install requests matplotlib
pip install requests matplotlib
- name: Pull
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git pull
- name: Run script
run: python stat_generator.py
- name: Commit changes
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add latest_stats.md
git add archive.json
git add archive/
git commit -m "Generate repository stats"
git push