diff --git a/.github/workflows/verify-commits.yml b/.github/workflows/verify-commits.yml index 2eb82019..86ff3c7a 100755 --- a/.github/workflows/verify-commits.yml +++ b/.github/workflows/verify-commits.yml @@ -32,14 +32,17 @@ jobs: run: corepack enable - name: Install deps run: yarn - - run: ls -al docs + - run: ls -al docs/**/* - name: Generate Docs run: yarn run docs/generate - - run: ls -al docs + - run: ls -al docs/**/* - name: Reset file mode changes - run: find docs -type d -exec chmod a+rwx {} \; - - run: find docs -type f -exec chmod a+rw {} \; + run: find docs -type d -exec chmod 755 {} \; + - run: find docs -type f -exec chmod 755 {} \; + - run: ls -al docs/**/* + + - run: git status - uses: stefanzweifel/git-auto-commit-action@v5 with: commit_message: "[skip ci] docs: automated update to docs\n\nskip-checks: true"