Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

BuildStatusConfig

import type { BuildStatusConfig } from "https://aws-api.deno.dev/v0.3/services/codebuild.ts?docs=full";

Contains information that defines how the CodeBuild build project reports the build status to the source provider.

interface BuildStatusConfig {
context?: string | null;
targetUrl?: string | null;
}

§Properties

§
context?: string | null
[src]

Specifies the context of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

Bitbucket: This parameter is used for the name parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

GitHub/GitHub Enterprise Server: This parameter is used for the context parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.

§
targetUrl?: string | null
[src]

Specifies the target url of the build status CodeBuild sends to the source provider. The usage of this parameter depends on the source provider.

Bitbucket: This parameter is used for the url parameter in the Bitbucket commit status. For more information, see build in the Bitbucket API documentation.

GitHub/GitHub Enterprise Server: This parameter is used for the target_url parameter in the GitHub commit status. For more information, see Create a commit status in the GitHub developer guide.