Live SVG gallery

Your GitHub activity, rendered as an arcade.

README Arcade turns a contribution calendar into zero-dependency animated SVG art. Every mode ships in light and dark variants and can refresh automatically with GitHub Actions.

Use README Arcade View source
Quick install

Generate and push from your own repository

name: README Arcade

on:
  workflow_dispatch:
  schedule:
    - cron: "17 3 * * *"

permissions:
  contents: write

jobs:
  render:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v7
      - uses: ECD5A/README-Arcade@v1
        with:
          mode: snake
      - name: Commit generated SVG
        run: |
          git config user.name "github-actions[bot]"
          git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
          git add dist
          git diff --cached --quiet || git commit -m "Update README Arcade"
          git push