https://github.com/symind/repo-stat
Calculate the processing speed of Issues and PRs in the GitHub repository
https://github.com/symind/repo-stat
Last synced: 2 months ago
JSON representation
Calculate the processing speed of Issues and PRs in the GitHub repository
- Host: GitHub
- URL: https://github.com/symind/repo-stat
- Owner: SyMind
- License: mit
- Created: 2023-08-11T02:58:35.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-12T00:11:13.000Z (almost 2 years ago)
- Last Synced: 2025-04-15T05:43:55.637Z (2 months ago)
- Language: JavaScript
- Homepage:
- Size: 19.5 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# repo-stat
Calculate the processing speed of Issues and PRs in the GitHub repository.
# Usage
```
GITHUB_TOKEN=your_github_token && npm run start
```# Algorithm
## Issues
1. Get all issues of a repository using GitHub's REST API.
2. Calculate the time interval between the closed time (closed_at) and the creation time (created_at) for each issues whose labels contain 'bug'.
3. Calculate the 80th percentile of all intervals.## PRS
1. Get all pull requests of a repository using GitHub's REST API.
2. Calculate the time interval between the merge time (merged_at) and the creation time (created_at) for each pull request.
3. Calculate the 80th percentile of all intervals.# Results
## Issues
| repo | all issues number | closed bug issues number | processing speed of issues (unit: days) |
| - | - | - | - |
| [Ant Design](https://github.com/ant-design/ant-design) | 27,252 | 1,996 | 18.92 |
| [Arco Design](https://github.com/arco-design/arco-design) | 1,078 | 200 | 7.12 |
| [Semi Design](https://github.com/DouyinFE/semi-design) | 778 | 267 | 55.82 |## PRs
| repo | all PRs number | merged PRs number | processing speed of PRs (unit: days) |
| - | - | - | - |
| [Ant Design](https://github.com/ant-design/ant-design) | 14,911 | 11,756 | 1.06 |
| [Arco Design](https://github.com/arco-design/arco-design) | 1,028 | 901 | 1.63 |
| [Semi Design](https://github.com/DouyinFE/semi-design) | 941 | 851 | 5.16 |# License
MIT