Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-codes committed Oct 27, 2024
1 parent afae585 commit 7c77bd0
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/verify-commits.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 7c77bd0

Please sign in to comment.