-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (34 loc) · 930 Bytes
/
Copy pathvimdocs.yml
File metadata and controls
37 lines (34 loc) · 930 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
35
36
37
name: vimdocs
on:
push:
branches:
- main
paths:
- "README.md"
- "docs/**"
- "lua/**"
- "plugin/**"
- ".github/workflows/vimdocs.yml"
workflow_dispatch:
permissions:
contents: write
jobs:
vimdocs:
name: Build vimdoc
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Generate vimdoc
uses: kdheepak/panvimdoc@main
with:
vimdoc: gui-keymap
version: "Neovim >= 0.8.0"
demojify: true
treesitter: true
- name: Push generated vimdoc
uses: stefanzweifel/git-auto-commit-action@v6
with:
commit_message: "chore(ci): auto-generate vimdoc"
commit_user_name: "github-actions[bot]"
commit_user_email: "github-actions[bot]@users.noreply.github.com"
commit_author: "github-actions[bot] <github-actions[bot]@users.noreply.github.com>"