Function: forge--update-pullreqs
forge--update-pullreqs is a byte-compiled function defined in
forge-github.el.
Signature
(forge--update-pullreqs ARG &rest ARGS)
Implementations
(forge--update-pullreqs (REPO forge-gitlab-repository) DATA) in `forge-gitlab.el'.
Undocumented
(forge--update-pullreqs (REPO forge-github-repository) DATA &optional BUMP) in `forge-github.el'.
Undocumented
Source Code
;; Defined in ~/.emacs.d/elpa/forge-20260408.1922/forge-github.el
;;;; Pullreqs
(cl-defmethod forge--update-pullreqs ((repo forge-github-repository) data
&optional bump)
(closql-with-transaction (forge-db)
(let ((initial-pull (not (oref repo pullreqs-until))))
(dolist (elt data)
(forge--update-pullreq repo elt bump initial-pull)))))