def process()

in app/lib/PRUpdater.scala [22:31]


  def process(prSnapshot: PRSnapshot, repoSnapshot: RepoSnapshot)(implicit
    g: GitHub,
    m: Materializer,
    sentryApiClientOpt: Option[SentryApiClient]
  ): Future[Option[PullRequestCheckpointsStateChangeSummary]] = {
    logger.trace(s"handling ${prSnapshot.pr.prId.slug}")
    for {
      snapshot <- getSummaryOfCheckpointChangesGiven(prSnapshot, repoSnapshot)
    } yield snapshot
  }