Skip to content

Commit

Permalink
ci: add documentation generation (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
willothy authored Dec 23, 2023
1 parent e9d3afc commit 4fc673f
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/panvimdoc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Generate documentation

on:
push:
branches: [ "main" ]
workflow_dispatch:

permissions:
contents: write
pull-requests: write

jobs:
docs:
runs-on: ubuntu-latest
name: pandoc to vimdoc
steps:
- uses: actions/checkout@v2
- uses: kdheepak/panvimdoc@main
with:
vimdoc: hawtkeys.nvim
version: "NVIM >=0.9"
toc: true
demojify: true
treesitter: true
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "chore(docs): autogenerate vimdoc"
branch: ${{ github.head_ref }}

0 comments on commit 4fc673f

Please sign in to comment.