A user forks a repository. This payload comes with an event key of repo:forked.

interface RepoForked {
    actor: repo.forked.Actor;
    date: string;
    eventKey: "repo:forked";
    repository: repo.forked.Repository;
}

Properties

The user who forks the repository. This user is also the owner of the fork.

date: string
eventKey: "repo:forked"
repository: repo.forked.Repository

The new repository.