Skip to main content

GitHubPushEventCommit

No description

type GitHubPushEventCommit {
id: String!
timestamp: String!
message: String!
author: GitHubPushEventCommitAuthor!
url: String!
distinct: Boolean!
added: [String!]!
modified: [String!]!
removed: [String!]!
packages(
condition: PackageCondition
): [DetailedPackage!]!
actionsWorkflows: [ActionsWorkflow!]!
}

Fields

GitHubPushEventCommit.id ● String! non-null scalar

The SHA of the commit.

GitHubPushEventCommit.timestamp ● String! non-null scalar

The ISO 8601 timestamp of the commit.

GitHubPushEventCommit.message ● String! non-null scalar

The commit message.

GitHubPushEventCommit.author ● GitHubPushEventCommitAuthor! non-null object

The git author of the commit.

GitHubPushEventCommit.url ● String! non-null scalar

URL that points to the commit API resource.

GitHubPushEventCommit.distinct ● Boolean! non-null scalar

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

GitHubPushEventCommit.added ● [String!]! non-null scalar

An array of files added in the commit.

GitHubPushEventCommit.modified ● [String!]! non-null scalar

An array of files modified by the commit.

GitHubPushEventCommit.removed ● [String!]! non-null scalar

An array of files removed in the commit.

GitHubPushEventCommit.packages ● [DetailedPackage!]! non-null object

Packages detected in the commit

GitHubPushEventCommit.packages.condition ● PackageCondition input

GitHubPushEventCommit.actionsWorkflows ● [ActionsWorkflow!]! non-null object

Workflows on GitHub Actions detected in the commit

Member of

GitHubPushEvent object