View Github Issues as stats in a compact way
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 โญ
ย