Transforms your contribution graph into an animated Pac-Man arcade game. Compiled daily via GitHub Action.
#animated #pacman #arcade #game #retro #contributions
Loading visualizer preview... This asset does not update dynamically from the username field; generate it in your own
profile repository with a GitHub Actions workflow by following the
setup guide → .
View GitHub Action workflow (.github/workflows/*.yml) name: Generate Pacman Contribution Graph
on:
schedule:
- cron: "31 0 * * *"
workflow_dispatch:
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: abozanona/pacman-contribution-graph@d258e3fb01511c1ff4fe6418408ede37b2ad4935
with:
github_user_name: ${{ github.repository_owner }}
- uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
with:
target_branch: output
build_dir: dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} Turns your contribution graph into a 16-bit retro dungeon crawler. Compiled daily via GitHub Action in your repo.
#animated #dungeon #crawl #retro #game #pixel
Loading visualizer preview... This asset does not update dynamically from the username field; generate it in your own
profile repository with a GitHub Actions workflow by following the
setup guide → .
View GitHub Action workflow (.github/workflows/*.yml) name: Generate Contribution Crawl
on:
schedule:
- cron: "47 0 * * *"
workflow_dispatch:
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
with:
repository: MaskiCoding/Contribution-Crawl
ref: 6010bdeffccd24d871600b9dfa9f9e75877d3af9
path: crawl
- uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38
with:
node-version: 24
cache: npm
cache-dependency-path: crawl/package-lock.json
- run: npm ci --ignore-scripts && npm run build
working-directory: crawl
- run: |
node crawl/dist/index.js "${{ github.repository_owner }}" .
mkdir -p dist
mv contribution-crawl-light.svg contribution-crawl-dark.svg dist/
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
with:
target_branch: output
build_dir: dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} Generates an animated snake eating your contribution grid dots. Runs daily via GitHub Action in your repo.
#animated #snake #contributions #animation #game #grid
Loading visualizer preview... This asset does not update dynamically from the username field; generate it in your own
profile repository with a GitHub Actions workflow by following the
setup guide → .
View GitHub Action workflow (.github/workflows/*.yml) name: Generate Contribution Snake
on:
schedule:
- cron: "17 0 * * *"
workflow_dispatch:
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: Platane/snk/svg-only@d8f6715049803e982ee5ff501b6b9b7d5deeb09b
with:
github_user_name: ${{ github.repository_owner }}
outputs: |
output/github-snake.svg
output/github-snake-dark.svg?palette=github-dark
- uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
with:
target_branch: output
build_dir: output
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} A space-themed profile package that renders a galaxy header, telemetry stats, tech stack, and project constellations.
#galaxy #space #header #stats #projects #workflow
Loading visualizer preview... This asset does not update dynamically from the username field; generate it in your own
profile repository with a GitHub Actions workflow by following the
setup guide → .
View GitHub Action workflow (.github/workflows/*.yml) name: Generate Galaxy Profile
on:
schedule:
- cron: "23 0 * * *"
workflow_dispatch:
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
with:
repository: vinimlo/galaxy-profile
ref: 5d4be766b4f9b76da9b7c6d9172fa6ba705e9b75
path: galaxy-profile
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1
with:
python-version: "3.12"
cache: pip
cache-dependency-path: galaxy-profile/requirements.txt
- name: Install Galaxy Profile
run: pip install -r galaxy-profile/requirements.txt
- name: Generate SVG set
working-directory: galaxy-profile
env:
GITHUB_TOKEN: ${{ github.token }}
run: |
cp config.example.yml config.yml
sed -i "s/^username: galaxy-dev/username: ${{ github.repository_owner }}/" config.yml
python -m generator.main
- run: |
mkdir -p dist/galaxy-profile
cp galaxy-profile/assets/generated/*.svg dist/galaxy-profile/
- uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
with:
target_branch: output
build_dir: dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} A GitHub Action that generates a themed set of SVG profile summary cards in multiple categories.
#stats #summary #languages #contributions #workflow #svg
Theme: Dracula GitHub Dark Tokyo Night
Loading visualizer preview... This asset does not update dynamically from the username field; generate it in your own
profile repository with a GitHub Actions workflow by following the
setup guide → .
View GitHub Action workflow (.github/workflows/*.yml) name: Generate ghstats Cards
on:
schedule:
- cron: "19 0 * * *"
workflow_dispatch:
permissions:
contents: write
jobs:
cards:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: tiennm99/ghstats@9f7c16f8357e8a26eada9a9652db7701c3ec5753
with:
user: ${{ github.repository_owner }}
token: ${{ github.token }}
out: dist/ghstats
themes: dracula,github_dark,tokyonight
include_private: "false"
commit_changes: "false"
- run: test -s dist/ghstats/dracula/stats.svg && test -s dist/ghstats/github_dark/stats.svg && test -s dist/ghstats/tokyonight/stats.svg
- uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
with:
target_branch: output
build_dir: dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} Generates a 3D isometric contribution calendar image updated daily via GitHub Action in your repo.
#animated #3d #isometric #calendar #contributions #graph
Loading visualizer preview... This asset does not update dynamically from the username field; generate it in your own
profile repository with a GitHub Actions workflow by following the
setup guide → .
View GitHub Action workflow (.github/workflows/*.yml) name: Generate 3D Contribution Calendar
on:
schedule:
- cron: "53 0 * * *"
workflow_dispatch:
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
- uses: yoshi389111/github-profile-3d-contrib@7d95e7d4cdc028dd1e1cbd957d65f35efb12ae39
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
USERNAME: ${{ github.repository_owner }}
- run: |
mkdir -p dist
cp -R profile-3d-contrib dist/
- uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
with:
target_branch: output
build_dir: dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} Turns contribution cells into an animated Breakout game board. Compiled daily via GitHub Action in your repo.
#animated #breakout #arcade #game #retro #contributions
Loading visualizer preview... This asset does not update dynamically from the username field; generate it in your own
profile repository with a GitHub Actions workflow by following the
setup guide → .
View GitHub Action workflow (.github/workflows/*.yml) name: Generate Contribution Breakout
on:
schedule:
- cron: "41 0 * * *"
workflow_dispatch:
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: cyprieng/github-breakout@60c43dca3a1361fbc9fb9bb533b5193296345c4f
with:
github_username: ${{ github.repository_owner }}
output_path: dist
- uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
with:
target_branch: output
build_dir: dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} Dynamic cumulative contribution and language growth graphs showing how GitHub activity compounds over time.
#growth #contributions #graph #languages #activity #png
Theme: Default Blue Green Purple Dark Light
Loading visualizer preview... [](https://github.com/qkitzero/github-contribution-growth-graph) An animated contribution graph where activity falls under gravity and collides with profile text.
#animated #gravity #contributions #physics #workflow #svg
Loading visualizer preview... This asset does not update dynamically from the username field; generate it in your own
profile repository with a GitHub Actions workflow by following the
setup guide → .
View GitHub Action workflow (.github/workflows/*.yml) name: Generate GitHub Gravity
on:
schedule:
- cron: "29 0 * * *"
workflow_dispatch:
permissions:
contents: write
jobs:
gravity:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: flycran/github-gravity@ea8d6643dfd97df88c2b8d7505f713df91cc45b8
with:
username: ${{ github.repository_owner }}
text: ${{ github.repository_owner }}
output-path: dist/github-gravity.svg
- run: test -s dist/github-gravity.svg
- uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
with:
target_branch: output
build_dir: dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} Shareable SVG statistics for merged pull requests and open-source contribution impact.
#pull-requests #contributions #stats #svg #open-source
Loading visualizer preview... [](https://github.com/f14XuanLv/github-pr-stats) Generates themed SVG repository pins with automatic ordering, translations, and optional contribution statistics.
#repositories #pins #badges #svg #workflow #github-pages
Loading visualizer preview... This asset does not update dynamically from the username field; generate it in your own
profile repository with a GitHub Actions workflow by following the
setup guide → .
View GitHub Action workflow (.github/workflows/*.yml) name: Generate Profile Repository Pins
on:
schedule:
- cron: "29 0 * * *"
workflow_dispatch:
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
with:
repository: profile-icons/readme-repo-pins-src
ref: bcd154073916acc3205c42b08b4b28d1c9aaa1c4
path: readme-repo-pins-src
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1
with:
python-version: "3.13"
- run: pip install -r readme-repo-pins-src/requirements.txt
- name: Generate public repository pins
env:
GH_API_TOKEN: ${{ github.token }}
GH_USERNAME: ${{ github.repository_owner }}
GH_REPO_OWNER: ${{ github.repository_owner }}
run: |
rm -rf repo-pins-work
mkdir -p repo-pins-work
cp -R readme-repo-pins-src/. repo-pins-work/
(cd repo-pins-work && python gh_profile_repo_pins.py)
mkdir -p dist/profile-repo-pins
cp repo-pins-work/imgs/*.svg dist/profile-repo-pins/
- uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
with:
target_branch: output
build_dir: dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} Comprehensive profile overview card with commit totals, star counts, and repository metrics.
#stats #summary #overview #card
Theme: Default Cyberpunk 2077 GitHub Solarized Dark Dracula
Loading visualizer preview... [](https://github.com/vn7n24fzkq/github-profile-summary-cards) Commit schedule distribution card showing peak coding hours and active days of the week.
#activity #time #commits #schedule
Theme: Default Cyberpunk 2077 GitHub Solarized Dark Dracula
Loading visualizer preview... [](https://github.com/vn7n24fzkq/github-profile-summary-cards) Generates a self-contained SVG profile statistics card from public GitHub REST data.
#profile #stats #header #svg #php #workflow
Loading visualizer preview... This asset does not update dynamically from the username field; generate it in your own
profile repository with a GitHub Actions workflow by following the
setup guide → .
View GitHub Action workflow (.github/workflows/*.yml) name: Generate GitHub Profile SVG
on:
schedule:
- cron: "43 0 * * *"
workflow_dispatch:
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
with:
repository: Axxel-L/github-profile-svg
ref: 0c2d082bc8151d12f61c740369c52fa8eea5741a
path: github-profile-svg
- name: Generate SVG from local PHP endpoint
run: |
set -euo pipefail
mkdir -p dist
php -S 127.0.0.1:8080 -t github-profile-svg >/tmp/github-profile-svg.log 2>&1 &
server_pid=$!
trap 'kill "$server_pid"' EXIT
for attempt in 1 2 3 4 5; do
if curl --fail --silent --show-error --get --data-urlencode "username=${{ github.repository_owner }}" http://127.0.0.1:8080/api/generate.php -o dist/github-profile-svg.svg; then
break
fi
sleep 2
done
test -s dist/github-profile-svg.svg
- uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
with:
target_branch: output
build_dir: dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GitHub achievement trophies generated from profile activity and published as an SVG.
#trophies #achievements #contributions #stats #profile #workflow
Loading visualizer preview... This asset does not update dynamically from the username field; generate it in your own
profile repository with a GitHub Actions workflow by following the
setup guide → .
View GitHub Action workflow (.github/workflows/*.yml) name: Generate GitHub Profile Trophy
on:
schedule:
- cron: "03 0 * * *"
workflow_dispatch:
permissions:
contents: write
jobs:
trophy:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
with:
repository: ryo-ma/github-profile-trophy
ref: e3c89df995e92e67cdd4b2acaab9d974583dc1f7
path: trophy
- uses: denoland/setup-deno@11b63cf76cfcafb4e43f97b6cad24d8e8438f62d
with:
deno-version: v1.x
- run: deno run --allow-net --allow-env --allow-read --allow-write trophy/render_svg.ts "${{ github.repository_owner }}" dist/github-profile-trophy.svg flat
env:
GITHUB_TOKEN1: ${{ github.token }}
- run: test -s dist/github-profile-trophy.svg
- uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
with:
target_branch: output
build_dir: dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} A responsive line graph showing contribution trends and commit frequency over time.
#activity #contributions #graph #chart
Theme: GitHub Light React Dracula Tokyo Night GitHub Dark
Loading visualizer preview... [](https://github.com/ashutosh00710/github-readme-activity-graph) A clean dynamic SVG profile card with themes, color controls, and optional statistics sections.
#stats #profile #card #themes #svg
Theme: Default Dark High Contrast Transparent
Loading visualizer preview... [](https://github.com/FajarKim/github-readme-profile) Displays your total contributions, current contribution streak, and longest streak on your GitHub profile.
#streak #contributions #daily #activity
Theme: Default Dark Radical Tokyo Night GitHub Dark Dracula
Loading visualizer preview... [](https://git.io/streak-stats) Ranks repositories you contributed to in a generated SVG card, with contribution and star ordering options.
#contributions #repositories #stats #ranking #workflow #svg
Theme: Default GitHub Dark Radical
Loading visualizer preview... This asset does not update dynamically from the username field; generate it in your own
profile repository with a GitHub Actions workflow by following the
setup guide → .
View GitHub Action workflow (.github/workflows/*.yml) name: Generate Repository Contribution Stats
on:
schedule:
- cron: "17 0 * * *"
workflow_dispatch:
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
with:
repository: HwangTaehyun/github-repository-contribution-stats
ref: 95a90818c685ac6487d10750fbfc42bcdc5ef14f
path: repository-contribution-stats
- run: mkdir -p dist
- name: Generate contribution stats
run: node repository-contribution-stats/action/dist/index.js
env:
GITHUB_PERSONAL_ACCESS_TOKEN: ${{ github.token }}
INPUT_USERNAME: ${{ github.repository_owner }}
INPUT_OUTPUT-FILE: dist/github-repository-contribution-stats.svg
INPUT_COMBINE-ALL-YEARLY-CONTRIBUTIONS: "true"
INPUT_HIDE-CONTRIBUTOR-RANK: "true"
INPUT_LIMIT: "6"
INPUT_THEME: github_dark
- run: test -s dist/github-repository-contribution-stats.svg
- uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
with:
target_branch: output
build_dir: dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} Turns contribution activity into an animated space shooter GIF generated in your own workflow.
#animated #game #space #contributions #gif #workflow
Loading visualizer preview... This asset does not update dynamically from the username field; generate it in your own
profile repository with a GitHub Actions workflow by following the
setup guide → .
View GitHub Action workflow (.github/workflows/*.yml) name: Generate GitHub Space Shooter
on:
schedule:
- cron: "37 0 * * *"
workflow_dispatch:
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
with:
repository: czl9707/gh-space-shooter
ref: 6b945979b0cf53e7887e62d32fddcdb5bccbed89
path: space-shooter
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1
with:
python-version: "3.12"
- run: pip install ./space-shooter
- name: Generate shooter GIF
env:
GH_TOKEN: ${{ github.token }}
run: |
mkdir -p dist
gh-space-shooter "${{ github.repository_owner }}" --output dist/github-space-shooter.gif --strategy random --fps 20
- run: test -s dist/github-space-shooter.gif
- uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
with:
target_branch: output
build_dir: dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} A compact hosted SVG card for user, language, and repository statistics with a large theme collection.
#stats #card #languages #repositories #themes #svg
Theme: Buefy GitHub Dark Dracula Tokyo Night Radical
Loading visualizer preview... [](https://github.com/KasRoudra/github-stats-card) Extended contribution, language, and profile statistics with the actively maintained GitHub Stats API.
#stats #overview #contributions #languages #activity
Theme: Default Dark Radical Tokyo Night Dracula
Loading visualizer preview... [](https://github.com/stats-organization/github-stats-extended) Animated terminal-style GitHub statistics with typing effects and configurable shell themes.
#terminal #stats #animated #typing #contributions #svg
Theme: Tokyo Night Dracula Catppuccin Nord Gruvbox
Loading visualizer preview... [](https://github.com/yogeshwaran01/github-stats-terminal-style) Creates animated GitHub contribution posters and skyline outputs from public contribution history.
#poster #contributions #animated #skyline #svg #workflow
Loading visualizer preview... This asset does not update dynamically from the username field; generate it in your own
profile repository with a GitHub Actions workflow by following the
setup guide → .
View GitHub Action workflow (.github/workflows/*.yml) name: Generate GitHubPoster
on:
schedule:
- cron: "47 0 * * *"
workflow_dispatch:
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
with:
repository: yihong0618/GitHubPoster
ref: 61691ee19032e43bdb4277096279b304c2b9ad44
path: github-poster
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1
with:
python-version: "3.12"
- run: pip install ./github-poster
- name: Generate GitHub poster
working-directory: github-poster
run: python -m github_poster github --github_user_name "${{ github.repository_owner }}" --year 2025-2026 --with-animation
- run: |
mkdir -p dist
cp github-poster/OUT_FOLDER/github.svg dist/github-poster.svg
- run: test -s dist/github-poster.svg
- uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
with:
target_branch: output
build_dir: dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 3D isometric contribution visualizations with themes, rolling windows, statistics, and profile credits.
#isometric #3d #contributions #activity #png #stats
Theme: GitHub Dark Light Neon Minimal Ocean
Loading visualizer preview... [](https://github.com/Spectrewolf8/isometric-contributions-embeds) Draws your GitHub contribution history as a growing SVG bonsai tree with customizable themes and species.
#animated #bonsai #tree #history #art #activity #reddit
Theme: Default Shore Sakura Forest Autumn
Loading visualizer preview... [](https://github.com/orijitghosh/kodama) Animated isometric terrain generated from your GitHub contributions with seasonal landscapes.
#animated #isometric #terrain #contributions #seasons #workflow
Loading visualizer preview... This asset does not update dynamically from the username field; generate it in your own
profile repository with a GitHub Actions workflow by following the
setup guide → .
View GitHub Action workflow (.github/workflows/*.yml) name: Generate Maeul in the Sky
on:
schedule:
- cron: "13 0 * * *"
workflow_dispatch:
permissions:
contents: write
jobs:
generate:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: t1seo/maeul-in-the-sky@e308d35ed2311502f44e557a93ab167de9922f5b
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
output_dir: ./dist
- run: test -s dist/maeul-in-the-sky-dark.svg && test -s dist/maeul-in-the-sky-light.svg
- uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
with:
target_branch: output
build_dir: dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} A highly configurable GitHub infographic generated as an SVG by GitHub Actions.
#metrics #stats #infographic #plugins #workflow
Loading visualizer preview... This asset does not update dynamically from the username field; generate it in your own
profile repository with a GitHub Actions workflow by following the
setup guide → .
View GitHub Action workflow (.github/workflows/*.yml) name: Generate GitHub Metrics
on:
schedule:
- cron: "07 0 * * *"
workflow_dispatch:
permissions:
contents: write
jobs:
metrics:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: lowlighter/metrics@366f8b9dfe3a59656c67d5dcad9950f59c9bc96d
with:
filename: metrics.svg
output_action: none
token: ${{ secrets.GITHUB_TOKEN }}
template: classic
config_timezone: Europe/Berlin
- run: sudo cp /metrics_renders/metrics.svg dist/metrics.svg
- uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
with:
target_branch: output
build_dir: dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} A small animated pixel pet that reflects GitHub contribution activity without signup, configuration, or private credentials.
#badge #pixel #pet #contributions #animated #svg
Loading visualizer preview... [](https://nomlings.cc/badge) A rotating multi-slide SVG profile card with repositories, stars, languages, commits, and other GitHub metrics.
#stats #profile #slides #repositories #svg
Loading visualizer preview... [](https://github.com/readme-SVG/readme-SVG-profile-bengo) Generates a contribution grid snake animation with embedded commit activity counters.
#animated #snake #commits #contributions #game #grid
Loading visualizer preview... This asset does not update dynamically from the username field; generate it in your own
profile repository with a GitHub Actions workflow by following the
setup guide → .
View GitHub Action workflow (.github/workflows/*.yml) name: Generate Snake and Commits
on:
schedule:
- cron: "23 0 * * *"
workflow_dispatch:
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: dahan8473/snake-and-commits@c55d1f1668e849195f395a9d93c56e74b68aaac2
with:
github_user: ${{ github.repository_owner }}
output: output/snake.svg
theme: green
- uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
with:
target_branch: output
build_dir: output
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} A cyberpunk-style SVG dashboard combining GitHub statistics with optional external data sources.
#stats #cyberpunk #dashboard #github #svg
Loading visualizer preview... [](https://github.com/gh0stintheshe11/Stats-SVG) Customizable terminal-style profile cards with live GitHub stats, languages, themes, and animated SVG modes.
#terminal #header #animated #stats #languages #svg
Theme: Amber Solar Amber Sakura Obsidian Graphite
Loading visualizer preview... [](https://github.com/doyoon530/terminal-identity) Generates a detailed SVG summary of repositories, contributions, languages, and GitHub activity in a scheduled workflow.
#stats #activity #languages #repositories #workflow #svg
Loading visualizer preview... This asset does not update dynamically from the username field; generate it in your own
profile repository with a GitHub Actions workflow by following the
setup guide → .
View GitHub Action workflow (.github/workflows/*.yml) name: Generate User Statistician
on:
schedule:
- cron: "11 0 * * *"
workflow_dispatch:
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803
- run: mkdir -p dist
- uses: cicirello/user-statistician@f44e0aaf18447f3923eca30b6caa7d0b9fe84213
with:
image-file: dist/user-statistician.svg
commit-and-push: false
colors: dark
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: crazy-max/ghaction-github-pages@1d6ee9b181a81033a16bd707a1401afa978daab4
with:
target_branch: output
build_dir: dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}