View Github Issues as stats in a compact way

ยท

1 min read

Intro

Issue Stats is a GH action that analyses a repo's issues and then generates a table for quick and easy info. The stat points are:

  • average issue response time โฑ
  • total issues ๐Ÿ”ข
  • open issues ๐Ÿ“ฌ
  • closed issues ๐Ÿ“ญ
  • replied issues โ˜‘
  • not replied issues โž–

Give it a try โœ…

Repo

YAML File

name: Issue Stats Card

on:
  issues:
    types: [opened, edited, closed]
  issue_comment:
    types: [created, deleted]
  workflow_dispatch: # Run workflow manually (without waiting for the cron to be called), through the Github Actions Workflow page directly

jobs:
  get_repo_issue_stats:
    runs-on: ubuntu-latest
    name: Get repo issue stats
    steps:
    - name: Checkout
      uses: actions/checkout@v2
    - name: Get issue stats then generate card 
      uses: arndom/issue-stats-card@v1

Hope you like it ๐Ÿค—, Don't forget to leave a star โญ

ย