docs: make minor refinements #19
This file contains 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 Documentation | |
on: | |
push: | |
branches: ["main"] | |
paths: | |
- "README.md" | |
pull_request: | |
paths: | |
- "README.md" | |
workflow_dispatch: | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Generate docs | |
uses: kdheepak/panvimdoc@main | |
with: | |
vimdoc: nx | |
description: Utility library to n^x your work with the nvim api | |
version: "Neovim >= 0.8.0" | |
treesitter: true | |
- name: Commit docs | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: "docs: auto generate vim docs" | |
branch: ${{ github.head_ref }} |