-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (35 loc) · 917 Bytes
/
panvimdoc.yml
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
35
36
37
38
name: panvimdoc
on:
push:
branches: [main]
paths:
- doc/chosen.md
- .github/workflows/panvimdoc.yml
permissions:
contents: write
jobs:
docs:
runs-on: ubuntu-latest
name: pandoc to vimdoc
steps:
- uses: actions/checkout@v2
- uses: kdheepak/panvimdoc@main
with:
vimdoc: chosen
pandoc: "doc/chosen.md"
version: "NVIM v0.8.0"
toc: true
description: ""
titledatepattern: "%Y %B %d"
demojify: false
dedupsubheadings: true
treesitter: true
ignorerawblocks: true
docmapping: false
docmappingprojectname: true
shiftheadinglevelby: 0
incrementheadinglevelby: 0
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "ci: auto generate vimdocs"
branch: ${{ github.head_ref }}