Skip to content

Commit 0014e3f

Browse files
MuntasirSZNAntoineGS
authored andcommitted
feat: add vimdoc
1 parent f4d5759 commit 0014e3f

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/vimdocgen.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Auto Generate Vimdoc
2+
on:
3+
push:
4+
branches: [main]
5+
paths:
6+
- README.md
7+
- .github/workflows/vimdocgen.yml
8+
permissions:
9+
contents: write
10+
jobs:
11+
docs:
12+
runs-on: ubuntu-latest
13+
name: Convert Markdown to Vimdoc
14+
steps:
15+
- uses: actions/checkout@v2
16+
- uses: kdheepak/panvimdoc@main
17+
with:
18+
vimdoc: copilot.lua # Output vimdoc project name (required)
19+
version: "NVIM v0.11.0" # Vim version number
20+
description: "Fully featured & enhanced replacement for copilot.vim complete with API for interacting with Github Copilot" # Project description used in title (if empty, uses neovim version and current date)
21+
titledatepattern: "%d %B, %Y" # Pattern for the date that used in the title
22+
- uses: stefanzweifel/git-auto-commit-action@v4
23+
with:
24+
commit_message: "chore: auto generate docs"
25+
branch: ${{ github.head_ref }}

0 commit comments

Comments
 (0)