interface GitConfiguration
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CodePipeline.GitConfiguration |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscodepipeline#GitConfiguration |
Java | software.amazon.awscdk.services.codepipeline.GitConfiguration |
Python | aws_cdk.aws_codepipeline.GitConfiguration |
TypeScript (source) | aws-cdk-lib » aws_codepipeline » GitConfiguration |
Git configuration for trigger.
Example
declare const sourceAction: codepipeline_actions.CodeStarConnectionsSourceAction;
declare const buildAction: codepipeline_actions.CodeBuildAction;
new codepipeline.Pipeline(this, 'Pipeline', {
pipelineType: codepipeline.PipelineType.V2,
stages: [
{
stageName: 'Source',
actions: [sourceAction],
},
{
stageName: 'Build',
actions: [buildAction],
},
],
triggers: [{
providerType: codepipeline.ProviderType.CODE_STAR_SOURCE_CONNECTION,
gitConfiguration: {
sourceAction,
pushFilter: [{
tagsExcludes: ['exclude1', 'exclude2'],
tagsIncludes: ['include*'],
}],
},
}],
});
Properties
| Name | Type | Description |
|---|---|---|
| source | IAction | The pipeline source action where the trigger configuration, such as Git tags. |
| pull | Git[] | The field where the repository event that will start the pipeline is specified as pull requests. |
| push | Git[] | The field where the repository event that will start the pipeline, such as pushing Git tags, is specified with details. |
sourceAction
Type:
IAction
The pipeline source action where the trigger configuration, such as Git tags.
The trigger configuration will start the pipeline upon the specified change only. You can only specify one trigger configuration per source action.
Since the provider for sourceAction must be CodeStarSourceConnection, you can use
CodeStarConnectionsSourceAction construct in aws-codepipeline-actions module.
pullRequestFilter?
Type:
Git[]
(optional, default: no filter.)
The field where the repository event that will start the pipeline is specified as pull requests.
The length must be less than or equal to 3.
pushFilter?
Type:
Git[]
(optional, default: no filter.)
The field where the repository event that will start the pipeline, such as pushing Git tags, is specified with details.
Git tags, file paths and branches are supported event type.
The length must be less than or equal to 3.

.NET
Go
Java
Python
TypeScript (