Values.TargetSourceReturns information about a target for a pull request.
type nonrec t = {repositoryName : RepositoryName.t;The name of the repository that contains the pull request.
*)sourceReference : ReferenceName.t;The branch of the repository that contains the changes for the pull request. Also known as the source branch.
*)destinationReference : ReferenceName.t option;The branch of the repository where the pull request changes are merged. Also known as the destination branch.
*)}val make :
?destinationReference:??? ->
repositoryName:RepositoryName.t ->
sourceReference:ReferenceName.t ->
unit ->
t