https://github.com/mgaitan/gh-weekly
GitHub CLI extension that generates a weekly report in markdown listing the PRs worked on
https://github.com/mgaitan/gh-weekly
gh-extension markdown productivity-tools weekly
Last synced: 3 months ago
JSON representation
GitHub CLI extension that generates a weekly report in markdown listing the PRs worked on
- Host: GitHub
- URL: https://github.com/mgaitan/gh-weekly
- Owner: mgaitan
- License: mit
- Created: 2023-02-14T18:37:33.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-23T13:52:54.000Z (about 3 years ago)
- Last Synced: 2025-06-07T09:06:18.949Z (about 1 year ago)
- Topics: gh-extension, markdown, productivity-tools, weekly
- Language: Shell
- Homepage:
- Size: 5.86 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# `gh weekly` GitHub CLI extension
[GitHub CLI](https://github.com/cli/cli) extension that generates a report in markdown listing the PRs you (or somebody else) worked on during the last week or so.
## Installation
```
gh extension install mgaitan/gh-weekly
```
Then run:
```
gh weekly
```
The full command line syntax is:
```
gh weekly [--author ] [--since ] [--org ]
```
By default the `--author` is `"@me"` (i.e you!), `--since` is `"7 days ago"`
and `--org` is the owner of the repo you are currently running the command.
So, for example, what has our fellow pythonist [@pablogsal](https://github.com/pablogsal)
been doing in the Python repos during the last 3 days?
```
$ gh weekly --author pablogsal --org python --since "3 days ago"
- [#105985](https://github.com/python/cpython/pull/105985) gh-98931: Add custom error messages to invalid import/from with multiple targets (MERGED)
- [#105962](https://github.com/python/cpython/pull/105962) gh-105960: Prevent stack overflows when using itertools.chain.from_iterable (CLOSED)
```