Skipping CI pipeline

So usually I always want to run my pipeline for any branch that gets pushed. That way, all my tests and linting checks run and I know it's ready for a pull request to the main branch. But sometimes, I just need to push that change real quick and go straight to the PR, without waiting on the branch pipeline run to complete. In my case this morning - it was a REALLY simple cosmetic typo - and I just didn't want to wait the 7 minutes for my branch pipeline to finish before my deployment pipeline could start...

Just add this into your commit message...

[skip ci]

Edit: This worked even better than I expected - it didn't even hit the Azure devops pipeline, so absolutely no delay in the queue. Nice!