aws-codepipeline

Can I skip an AWS CodePipeline build?


I am currently developing a personal project on master. Every time I push to origin master a build is triggered on CodePipeline. As I am the only developer working on this project and don't want to bother with branches at this stage it would be nice to skip unnecessary builds. I wouldn't mind pushing to another branch, but it's a small annoyance.

CodeShip allows you to skip a build by including --skip-ci in your commit message. Is something like this possible with CodePipeline?

None of my Google searches have yielded results. The CodePipeline documentation makes no mention of such a feature either.


Solution