Api.Ref
type pr_info = {
id : int;
base : string;
title : string;
labels : string list;
bodyHTML : string;
}
type t = [
| `Ref of string
| `PR of pr_info
]
type id = [
| `PR of int
val pp : t Fmt.t
val compare : t -> t -> int
val to_git : t -> string
to_git t is the Git-format string of the ref, e.g."refs/pull/%d/head"
to_git t