1. 背景

試行錯誤のため、PUSHを繰り返すことがあります。

そうすると、Netlifyがそれを検知して健気にCIを動かし始めます。

クレジットが消費されますので、それを避けたくて。

2.手順

コミットメッセージに[skip ci]を入れるだけです。

たとえば、以下のメッセージでもOKです。

git commit -m "[skip ci]"

以下にそんな記述があります。

Of course, you can also specifically instruct Netlify to skip a build even while auto-publishing is turned on. Adding the text [skip ci] to your commit messages will achieve that. And you can also choose to terminate active deploys manually if you need to.Intelligent deploy skipping: An automatic optimisation

参考

Intelligent deploy skipping: An automatic optimisation