diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml index 2c56e75..f731e78 100644 --- a/.github/workflows/jekyll.yml +++ b/.github/workflows/jekyll.yml @@ -14,6 +14,7 @@ permissions: jobs: build: runs-on: ubuntu-latest + if: "!contains(github.event.head_commit.message, '[SKIP]')" steps: - name: Checkout uses: actions/checkout@v4 @@ -56,7 +57,7 @@ jobs: url: ${{ steps.deployment.outputs.page_url }} runs-on: ubuntu-latest needs: build - if: "github.event_name != 'pull_request'" + if: "github.event_name != 'pull_request' && !contains(github.event.head_commit.message, '[SKIP]')" steps: - name: Deploy to GitHub Pages id: deployment