Skip to content

Generate GitHub Stats #26

Generate GitHub Stats

Generate GitHub Stats #26

Workflow file for this run

name: Generate GitHub Stats
on:
schedule:
- cron: '0 3 * * *' # runs daily at 03:00 UTC
workflow_dispatch: # allows manual trigger
jobs:
stats:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Generate minimal user stats including private repos
uses: cicirello/user-statistician@v1
with:
image-file: images/userstats.svg
include-title: true
custom-title: "MeryamB's GitHub Stats"
colors: "light"
hide-keys: true
commit-and-push: true
locale: "en"
max-languages: 10
include-private: true # <--- include private contributions
category-order: "languages, contributions"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}