feat: implement review workflow
- identification and collection of review comments - api call for creating review - keybinds for submitting review
This commit is contained in:
parent
1e8e7df3a8
commit
aa4749c648
3 changed files with 335 additions and 2 deletions
|
@ -25,8 +25,9 @@
|
|||
(defun ghpr--pr-summary (pr)
|
||||
"Formats a PR into a summary."
|
||||
(let* ((number (alist-get 'number pr))
|
||||
(title (alist-get 'title pr)))
|
||||
(format "[#%s] %s" number title)))
|
||||
(title (alist-get 'title pr))
|
||||
(author (alist-get 'author pr)))
|
||||
(format "[#%s] @%s: %s" number author title)))
|
||||
|
||||
(defun ghpr--pr-summary-selection (pr)
|
||||
"Formats a PR into a summary for a minibuffer selection."
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue