Function: forge-request-changes
forge-request-changes is an interactive and byte-compiled function
defined in forge-commands.el.
Signature
(forge-request-changes)
Documentation
Request changes to the current pull-request.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/forge-20260408.1922/forge-commands.el
(transient-define-suffix forge-request-changes ()
"Request changes to the current pull-request."
:description "request changes"
:inapt-if-not #'forge-current-pullreq
:transient nil
(interactive)
(let ((pullreq (forge-current-pullreq t)))
(unless (forge-github-repository-p (forge-get-repository pullreq))
(user-error "This command is only available for Github"))
(forge--setup-post-buffer pullreq #'forge--submit-request-changes
"%i;new-request" "Request changes for pull-request #%i of %p")))