docs: crop demo #9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Generate help file" | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| paths: | |
| - "README.md" | |
| - ".github/workflows/generate-help-file.yaml" | |
| jobs: | |
| docs: | |
| runs-on: "ubuntu-latest" | |
| permissions: | |
| contents: "write" | |
| steps: | |
| - name: "Checkout" | |
| uses: "actions/checkout@v4" | |
| - name: "Convert README to help file" | |
| uses: "kdheepak/[email protected]" | |
| with: | |
| vimdoc: "codecompanion-spinner" | |
| demojify: true | |
| shiftheadinglevelby: -1 | |
| - name: "Commit help file" | |
| uses: "stefanzweifel/git-auto-commit-action@v5" | |
| with: | |
| commit_message: "docs: update help file" |