Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/actionify/src/deps/octokit-types.ts>CheckRunCreatedEvent

Create and manage your GitHub workflows with TypeScript and Deno.
Latest
interface CheckRunCreatedEvent
import { type CheckRunCreatedEvent } from "https://deno.land/x/actionify@0.3.0/src/deps/octokit-types.ts";

Properties

action: "created"
check_run: { id: number; node_id?: string; head_sha: string; external_id: string; url: string; html_url: string; details_url?: string; status:
| "queued"
| "in_progress"
| "completed"
| "waiting"
; conclusion:
| "success"
| "failure"
| "neutral"
| "cancelled"
| "timed_out"
| "action_required"
| "stale"
| "skipped"
| null
; started_at: string; completed_at: string | null; output: { title?: string | null; summary: string | null; text: string | null; annotations_count: number; annotations_url: string; }; name: string; check_suite: { id: number; node_id?: string; head_branch: string | null; head_sha: string; status: "queued" | "in_progress" | "completed"; conclusion:
| "success"
| "failure"
| "neutral"
| "cancelled"
| "timed_out"
| "action_required"
| "stale"
| null
; url: string; before: string | null; after: string | null; pull_requests: CheckRunPullRequest[]; deployment?: CheckRunDeployment; app: App; created_at: string; updated_at: string; }; app: App; pull_requests: CheckRunPullRequest[]; deployment?: CheckRunDeployment; }

The check_run.

optional
requested_action: { identifier?: string; } | null

The action requested by the user.

repository: Repository
sender: User
optional
installation: InstallationLite
optional
organization: Organization