-
-
Notifications
You must be signed in to change notification settings - Fork 29
34 lines (34 loc) · 875 Bytes
/
Copy pathpanvimdoc.yml
File metadata and controls
34 lines (34 loc) · 875 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: panvimdoc
on:
push:
paths:
- .github/workflows/panvimdoc.yml
- README.md
workflow_dispatch:
permissions:
contents: write
jobs:
docs:
runs-on: ubuntu-latest
name: pandoc to vimdoc
steps:
- name: Checkout
uses: actions/checkout@v6.0.3
- name: Run panvimdoc for README
uses: kdheepak/panvimdoc@v4.0.1
with:
vimdoc: wezterm-types
pandoc: README.md
version: "NVIM >=v0.7.0"
toc: false
demojify: true
dedupsubheadings: false
treesitter: true
ignorerawblocks: true
docmapping: false
docmappingprojectname: false
- name: Auto-Commit
uses: stefanzweifel/git-auto-commit-action@v7.1.0
with:
commit_message: "docs: auto generate docs"
branch: ${{ github.head_ref }}