Table of Contents

Class PullRequestHead

Namespace
Ando.Server.GitHub
Assembly
Ando.Server.dll

Pull request head (source) branch info.

public record PullRequestHead : IEquatable<PullRequestHead>
Inheritance
PullRequestHead
Implements
Inherited Members

Properties

Ref

Branch name of the head (source) branch.

[JsonPropertyName("ref")]
public string Ref { get; init; }

Property Value

string

Repo

Repository containing the source branch (for fork PRs).

[JsonPropertyName("repo")]
public RepositoryInfo? Repo { get; init; }

Property Value

RepositoryInfo

Sha

Commit SHA at the head of the source branch.

[JsonPropertyName("sha")]
public string Sha { get; init; }

Property Value

string