diff options
| author | Thanos Apollo <public@thanosapollo.org> | 2026-04-26 23:06:29 +0300 |
|---|---|---|
| committer | Thanos Apollo <public@thanosapollo.org> | 2026-04-26 23:06:29 +0300 |
| commit | 85949ae9c6caba305d0816d341cdee8fe09e1a8d (patch) | |
| tree | 23536d3c5c0ee86a72299c09a69ac42e7943e323 | |
| parent | 97c60cf5c635a77a4fdb8e3222e435b779dbb9b2 (diff) | |
[fix] vc: Use HEAD subject for multi-commit PR title
| -rw-r--r-- | lisp/forgejo-vc.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/forgejo-vc.el b/lisp/forgejo-vc.el index b82c96c..b9976ef 100644 --- a/lisp/forgejo-vc.el +++ b/lisp/forgejo-vc.el @@ -213,7 +213,7 @@ Returns 0 if UPSTREAM is not a valid ref." (cons (forgejo-vc--head-subject) (forgejo-vc--head-body))) (t (let ((subjects (forgejo-vc--commit-subjects upstream))) - (cons (car subjects) + (cons (forgejo-vc--head-subject) (mapconcat #'identity subjects "\n"))))))) ;;; PR template discovery |
