docs!: repeat_motions can be stateless or stateful #21
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: Demicolon CI | |
| on: [push] | |
| jobs: | |
| docs: | |
| if: github.ref == 'refs/heads/main' | |
| name: Pandoc to Vimdoc | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write # git-auto-commit-action needs push permissions | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: panvimdoc | |
| uses: kdheepak/panvimdoc@main | |
| with: | |
| vimdoc: demicolon | |
| - uses: stefanzweifel/git-auto-commit-action@v4 | |
| with: | |
| commit_message: "docs: auto generate vimdoc" | |
| branch: ${{ github.head_ref }} |