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

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

Properties

id: string
tree_id: string
distinct: boolean

Whether this commit is distinct from any that have been pushed before.

message: string

The commit message.

timestamp: string

The ISO 8601 timestamp of the commit.

url: string

URL that points to the commit API resource.

author: Committer
committer: Committer
added: string[]

An array of files added in the commit. For extremely large commits where GitHub is unable to calculate this list in a timely manner, this may be empty even if files were added.

modified: string[]

An array of files modified by the commit. For extremely large commits where GitHub is unable to calculate this list in a timely manner, this may be empty even if files were modified.

removed: string[]

An array of files removed in the commit. For extremely large commits where GitHub is unable to calculate this list in a timely manner, this may be empty even if files were removed.