feat: next edit suggestion (nes) #10
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: Auto Generate Vimdoc | |
| on: | |
| push: | |
| branches: [master] | |
| paths: | |
| - README.md | |
| - .github/workflows/vimdocgen.yml | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| docs: | |
| runs-on: ubuntu-latest | |
| name: Convert Markdown to Vimdoc | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: kdheepak/panvimdoc@main | |
| with: | |
| vimdoc: "copilot" | |
| version: "NVIM v0.11.0" | |
| description: "Fully featured & enhanced replacement for copilot.vim complete with API for interacting with Github Copilot" | |
| titledatepattern: "%d %B, %Y" | |
| toc: false | |
| - name: Create Pull Request | |
| uses: peter-evans/create-pull-request@v7 | |
| with: | |
| add-paths: | | |
| doc/* | |
| author: github-actions[bot] <github-actions[bot]@users.noreply.github.com> | |
| base: master | |
| branch: create-pull-request/autogenerate-vimdoc | |
| commit-message: "docs: update vimdocs" | |
| title: "Update Vimdocs" |