From 7f488dbb10097593372b2aeff9d4fbcbf6157690 Mon Sep 17 00:00:00 2001 From: Andrew Smith Date: Sun, 27 Oct 2024 14:16:07 +0000 Subject: [PATCH] =?UTF-8?q?ci(misc):=20=F0=9F=8E=A1=20ignore=20mode=20chan?= =?UTF-8?q?ges=20when=20generating=20docs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This prevents docs from being seen as changed with no content changes, thus reducing noise. --- .github/workflows/verify-commits.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/verify-commits.yml b/.github/workflows/verify-commits.yml index 292e7c424..b3f872e59 100755 --- a/.github/workflows/verify-commits.yml +++ b/.github/workflows/verify-commits.yml @@ -34,6 +34,8 @@ jobs: run: yarn - name: Generate Docs run: yarn run docs/generate + - name: Ignore mode changes + run: git config --global core.fileMode false - uses: stefanzweifel/git-auto-commit-action@v5 with: commit_message: "[skip ci] docs: automated update to docs\n\nskip-checks: true"