https://github.com/kit494way/gh-reply
A GitHub CLI (gh) extension to make use of saved replies.
https://github.com/kit494way/gh-reply
cli gh-extension golang
Last synced: 4 months ago
JSON representation
A GitHub CLI (gh) extension to make use of saved replies.
- Host: GitHub
- URL: https://github.com/kit494way/gh-reply
- Owner: kit494way
- License: mit
- Created: 2022-10-01T06:11:33.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-04-01T14:28:10.000Z (over 3 years ago)
- Last Synced: 2025-08-09T21:39:13.453Z (11 months ago)
- Topics: cli, gh-extension, golang
- Language: Go
- Homepage:
- Size: 18.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# gh-reply
A GitHub CLI ([gh](https://github.com/cli/cli)) extension to make use of saved replies.
## Installation
```sh
gh extension install kit494way/gh-reply
```
## Usage
### list
List saved replies.
```sh
gh reply list
```
### view
View a saved reply.
```sh
gh view
```
Without id, `gh view`, you can interactively select a saved reply.
### comment
Add a comment to an issue using a saved reply.
```sh
gh reply comment --issue
```
For pull request, use `--pr` option instead of `--issue`.
```sh
gh reply comment --pr
```
To edit a saved reply before adding a comment, use `--editor` option.
```sh
gh reply comment --issue --editor
```
This launch a editor initialized by a saved reply.
Without an argument ``, you can interactively select a saved reply to use.
```sh
gh reply comment --issue
```
## License
MIT