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>AlertInstance

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

Properties

ref: string

The full Git reference, formatted as refs/heads/<branch name>.

analysis_key: string

Identifies the configuration under which the analysis was executed. For example, in GitHub Actions this includes the workflow filename and job name.

environment: string

Identifies the variable values associated with the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed.

state: "open" | "dismissed" | "fixed"

State of a code scanning alert.

optional
commit_sha: string
optional
message: { text?: string; }
optional
location: { path?: string; start_line?: number; end_line?: number; start_column?: number; end_column?: number; }
optional
classifications: string[]