Module: AWSCDK::CodeBuild::EventAction

Defined in:
code_build/event_action.rb

Overview

The types of webhook event actions.

Constant Summary collapse

PUSH =
Deprecated.
Note:

Default:

A push (of a branch, or a tag) to the repository.

Jsii::Enum.new("aws-cdk-lib.aws_codebuild.EventAction", "PUSH")
PULL_REQUEST_CREATED =
Deprecated.
Note:

Default:

Creating a Pull Request.

Jsii::Enum.new("aws-cdk-lib.aws_codebuild.EventAction", "PULL_REQUEST_CREATED")
PULL_REQUEST_UPDATED =
Deprecated.
Note:

Default:

Updating a Pull Request.

Jsii::Enum.new("aws-cdk-lib.aws_codebuild.EventAction", "PULL_REQUEST_UPDATED")
PULL_REQUEST_CLOSED =
Deprecated.
Note:

Default:

Closing a Pull Request.

Jsii::Enum.new("aws-cdk-lib.aws_codebuild.EventAction", "PULL_REQUEST_CLOSED")
PULL_REQUEST_MERGED =
Deprecated.
Note:

Default:

Merging a Pull Request.

Jsii::Enum.new("aws-cdk-lib.aws_codebuild.EventAction", "PULL_REQUEST_MERGED")
PULL_REQUEST_REOPENED =
Deprecated.
Note:

Default:

Re-opening a previously closed Pull Request.

Note that this event is only supported for GitHub and GitHubEnterprise sources.

Jsii::Enum.new("aws-cdk-lib.aws_codebuild.EventAction", "PULL_REQUEST_REOPENED")
RELEASED =
Deprecated.
Note:

Default:

A release is created in the repository.

Works with GitHub only.

Jsii::Enum.new("aws-cdk-lib.aws_codebuild.EventAction", "RELEASED")
PRERELEASED =
Deprecated.
Note:

Default:

A prerelease is created in the repository.

Works with GitHub only.

Jsii::Enum.new("aws-cdk-lib.aws_codebuild.EventAction", "PRERELEASED")
WORKFLOW_JOB_QUEUED =
Deprecated.
Note:

Default:

A workflow job is queued in the repository.

Works with GitHub only.

Jsii::Enum.new("aws-cdk-lib.aws_codebuild.EventAction", "WORKFLOW_JOB_QUEUED")