1 Answer
- Newest
- Most votes
- Most comments
1
Hello.
Could you share your CodePipeline CloudFormation template?
There may be a problem with the template syntax.
Can you confirm that "Triggers" has the following syntax?
Looking at the document, you can see that "FilePaths" of "PullRequest" is "AWS::CodePipeline::Pipeline GitFilePathFilterCriteria".
Type: AWS::CodePipeline::Pipeline
Properties:
Triggers:
- GitConfiguration:
PullRequest:
- FilePaths:
Excludes:
- "test"
Includes:
- "sample"
Relevant content
- asked a year ago
- Accepted Answerasked 7 months ago
- asked 3 years ago
- Accepted Answerasked 6 months ago
- AWS OFFICIALUpdated 3 days ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 8 months ago
- AWS OFFICIALUpdated a month ago
Thanks, that works. Is there any way you were able to see what fields the property belongs to? From the documentation, I was only able to tell that GitFilePathFilterCriteria is a property of AWS::CodePipeline::Pipeline, not of GitConfiguration
I also searched by tracing the property one by one.