← Back to plugins index

📅 Isometric commit calendar

This plugin displays an isometric view of a user commit calendar along with a few additional statistics like current streak and average number of commit per day.

⚠️ Disclaimer

This plugin is not affiliated, associated, authorized, endorsed by, or in any way officially connected with GitHub. All product and company names are trademarks™ or registered® trademarks of their respective holders.

Supported features
→ Full specification
📗 Classic template 📙 Terminal template
👤 Users
🔑 (scopeless) read:org (optional) read:user (optional) read:packages (optional) repo (optional)
Full year calendar
Half year calendar
## ➡️ Available options
OptionDescription

plugin_isocalendar

Enable isocalendar plugin

type: boolean
default: no

plugin_isocalendar_duration

Time range

  • half-year: 180 days
  • full-year: 1 year
type: string
default: half-year
allowed values:
  • half-year
  • full-year
## ℹ️ Examples workflows ```yaml name: Half-year calendar uses: lowlighter/metrics@latest with: filename: metrics.plugin.isocalendar.svg token: ${{ secrets.METRICS_TOKEN }} base: "" plugin_isocalendar: yes ``` ```yaml name: Full-year calendar uses: lowlighter/metrics@latest with: filename: metrics.plugin.isocalendar.fullyear.svg token: ${{ secrets.METRICS_TOKEN }} base: "" plugin_isocalendar: yes plugin_isocalendar_duration: full-year ```