package datakit-github

  1. Overview
  2. Docs
type t =
  1. | Repo of Repo.state * Repo.t
  2. | PR of PR.t
  3. | Status of Status.t
  4. | Ref of Ref.event
  5. | Other of Repo.t * string

The type for event values.

val pp : t Fmt.t

pp is the pretty-printer for event values.

val of_repo : Repo.state -> Repo.t -> t
val of_pr : PR.t -> t
val of_status : Status.t -> t
val of_ref : Ref.event -> t
val of_other : Repo.t -> string -> t
val repo : t -> Repo.t

repo t is t's repository.