Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/enselic/github-repo-open-issues
Generate tab-separated value (.tsv) files with number of open issues over time in a GitHub repository, categorized by labels.
https://github.com/enselic/github-repo-open-issues
Last synced: 24 days ago
JSON representation
Generate tab-separated value (.tsv) files with number of open issues over time in a GitHub repository, categorized by labels.
- Host: GitHub
- URL: https://github.com/enselic/github-repo-open-issues
- Owner: Enselic
- License: mit
- Created: 2023-11-13T05:38:10.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2023-11-23T18:06:06.000Z (12 months ago)
- Last Synced: 2024-05-08T19:49:36.503Z (6 months ago)
- Language: Rust
- Size: 196 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# github-repo-open-issue-trends
Generate tab-separated value (.tsv) files with number of open issues over time in a GitHub repository, categorized by labels. Use your spreadsheet program of choice to turn the data into pretty diagrams.A bit hacky.
# Example
```sh
RUST_LOG=info \
cargo run -- \
--period month \
--label-category "C-bug:bugs" \
--label-category "C-cleanup:feature requests" \
--label-category "C-enhancement:feature requests" \
--label-category "C-feature-accepted:feature requests" \
--label-category "C-feature-request:feature requests" \
--label-category "C-future-compatibility:feature requests" \
--label-category "C-optimization:feature requests" \
--label-category "C-tracking-issue:feature requests" \
--label-category "*:uncategorized" \
--page-size 100 \
--pages 9999 \
rust-lang/rust
```