-
Notifications
You must be signed in to change notification settings - Fork 0
29 lines (29 loc) · 737 Bytes
/
docs.yml
File metadata and controls
29 lines (29 loc) · 737 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
name: docs
on:
push:
branches:
- "main"
paths:
- "README.org"
- ".github/workflows/docs.yml"
jobs:
build-docs:
runs-on: ubuntu-latest
name: pandoc to vimdoc
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- uses: actions/checkout@v4
- name: panvimdoc
uses: kdheepak/panvimdoc@v4.0.1
with:
vimdoc: org-mouse
pandoc: README.org
toc: true
treesitter: true
version: "NVIM v0.9.2"
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "Auto generate docs"